/* Blog Section Styling */
.blog-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
    position: relative;
    overflow: hidden;
}

.blog-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.blog-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-section__badge-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFF9FB 0%, #FFE8F0 100%);
    border: 1px solid rgba(208, 143, 168, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #D08FA8;
    transition: all 0.3s ease;
}

.blog-section__badge svg {
    stroke: #D08FA8;
}

.blog-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-section__title-accent {
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-section__description {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section__description strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* Blog Grid */
.blog-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Blog Card */
.blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-card__image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF9FB 0%, #F5F5F5 100%);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #D08FA8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: #999999;
}

.blog-card__date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.blog-card__date svg {
    stroke: #999999;
}

.blog-card__reading-time {
    position: relative;
    padding-left: 1rem;
}

.blog-card__reading-time::before {
    content: '•';
    position: absolute;
    left: 0.375rem;
    color: #CCCCCC;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card__title {
    color: #D08FA8;
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #D08FA8;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card__link svg {
    stroke: #D08FA8;
    transition: transform 0.3s ease;
}

.blog-card__link:hover {
    color: #B5708A;
    gap: 0.75rem;
}

.blog-card__link:hover svg {
    stroke: #B5708A;
    transform: translateX(4px);
}

/* CTA Section */
.blog-section__cta {
    text-align: center;
}

.blog-section__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
    transition: all 0.3s ease;
}

.blog-section__button svg {
    stroke: #FFFFFF;
}

.blog-section__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208, 143, 168, 0.4);
}

.blog-section__button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-section {
        padding: 4rem 0;
    }

    .blog-section__header {
        margin-bottom: 3rem;
    }

    .blog-section__title {
        font-size: 2rem;
    }

    .blog-section__grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-section__header {
        margin-bottom: 2rem;
    }

    .blog-section__title {
        font-size: 1.75rem;
    }

    .blog-section__description {
        font-size: 1rem;
    }

    .blog-section__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card__image {
        height: 200px;
    }

    .blog-card__content {
        padding: 1.5rem;
    }

    .blog-card__title {
        font-size: 1.125rem;
    }

    .blog-section__button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-section__title {
        font-size: 1.5rem;
    }

    .blog-section__badge {
        font-size: 0.8125rem;
        padding: 0.375rem 0.875rem;
    }

    .blog-card__meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-card__reading-time::before {
        display: none;
    }

    .blog-card__reading-time {
        padding-left: 0;
    }
}
