/* Blog Section Styles */
.blog-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    padding-top: 40px;
    color: white;
    padding-bottom: 120px;
}

/* Blog Section Header */
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-section-title-group {
    flex: 1;
}

.blog-section-title {
    display: inline-block;
    margin-bottom: 1.2rem;
    background: linear-gradient(45deg, #ff6b5e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.blog-section-subtitle {
    background: linear-gradient(45deg, #ffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
    max-width: 910px;
    font-family: 'Inter', sans-serif;
}

.blog-section-discover {
    align-self: flex-end;
}

.discover-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    color: #AAABAE;
}

.discover-more-link:hover {
    color: #ff4444;
}

.discover-more-link svg {
    transition: transform 0.3s ease;
}

.discover-more-link:hover svg {
    transform: translate(2px, -2px);
}

/* Blog Cards Grid */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

/* Blog Card */
.blog-card {
    background: #242936;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-thumbnail {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 200px;
    background-color: #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAABAE;
}

.blog-card-content {
    padding: 20px 20px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.blog-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;

}

.blog-card-title a:hover {
    color: var(--primary-red);
}

.blog-card-link {
    color: #AAABAE;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 20px 0;
}

.blog-card-link:hover {
    color: var(--primary-red);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translate(2px, -2px);
}

/* Blog No Posts */
.blog-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #AAABAE;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-section-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .blog-section-subtitle {
        font-size: 36px;
    }
    
    .blog-section-discover {
        align-self: flex-start;
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .blog-section-subtitle {
        font-size: 28px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
}
