:root {
    --primary: #ff6b8b;
    --primary-dark: #e05573;
    --secondary: #6a11cb;
    --light: #f8f9fa;
    --dark: #212529;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 139, 0.4);
}

.card-hover {
    transition: all 0.3s;
    border: 1px solid #eaeaea;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rating {
    color: #ffc107;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 139, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 15px;
}

.page-header {
    background: var(--light);
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
}

.blog-hero {
    width: 100%;
    margin: 0;
    max-height: 480px;
    overflow: hidden;
    background: var(--light);
}

.blog-hero__img {
    width: 100%;
    height: clamp(220px, 40vw, 480px);
    object-fit: cover;
    display: block;
}

.blog-article__header {
    padding-top: 0.5rem;
}

.blog-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-card {
    background: var(--light);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
}

.blog-author-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.blog-trust-note,
.blog-sources {
    padding: 1rem 1.25rem;
    background: #fff8f0;
    border-radius: 8px;
    border: 1px solid #ffe8cc;
}

.blog-sources {
    background: var(--light);
    border-color: #eaeaea;
}