/* Blog Trends Section - Exact Figma Match */
.blog-trends-section {
    padding: 104px 205px 24px 205px;
}

/* Header */
.blog-trends-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 84px;
}

.blog-trends-title h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: normal;
    color: #242728;
    margin: 0;
}

.blog-trends-title p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: #3D3D3D;
    margin: 0;
}

/* Button */
.blog-trends-button {
    background: #242728;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.blog-trends-button:hover {
    background: #1a1d1e;
    transform: translateY(-2px);
}

.blog-trends-button svg {
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* HORIZONTAL Container: Cards + Hero on same line */
.blog-trends-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: stretch;
}

/* Blog Cards */
.blog-card {
    background: white;
    width: 378px;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.05);
    padding: 10px 11px 30px 11px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
}

/* Card Top */
.blog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 255px;
}

.blog-card-thumbnail {
    width: 110px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
}

.blog-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Bottom */
.blog-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.blog-card-date {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #3D3D3D;
    margin: 0;
}

.blog-card-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #242728;
    margin: 0;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #6D4DF2;
}

.blog-card-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    color: #3D3D3D;
    margin: 0;
}

/* Hero Image - Flex grow to fill remaining space */
.blog-hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 10px 22px;
    min-height: 500px;
}

.blog-hero-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.15;
    color: white;
    margin: 0;
    white-space: pre-line;
}

/* Bookmark Buttons */
.bookmark-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 18px;
    height: 18px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bookmark-btn.hero-bookmark {
    position: absolute;
    top: 9.5px;
    right: 22px;
    z-index: 2;
}

.bookmark-btn:hover svg path {
    stroke: #6D4DF2;
    fill: #6D4DF2;
    fill-opacity: 0.1;
}

/* Card Expansion Animation */
.blog-card.expanded .blog-card-thumbnail {
    width: 60px !important;
    height: 60px !important;
    border-radius: 7px !important;
}

.blog-card.expanded .blog-card-top {
    margin-bottom: 20px !important;
}

.blog-card.expanded .blog-card-bottom {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s !important;
}

.blog-card-bottom {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 1440px) {
    .blog-trends-section {
        padding: 80px 120px 24px 120px;
    }
}

@media (max-width: 1200px) {
    .blog-trends-section {
        padding: 60px 40px 24px 40px;
    }
    
    .blog-trends-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .blog-trends-container {
        flex-direction: column;
    }
    
    .blog-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-trends-section {
        padding: 40px 20px 24px 20px;
    }
    
    .blog-trends-title h2 {
        font-size: 36px;
    }
    
    .blog-trends-title p {
        font-size: 18px;
    }
    
    .blog-card-top {
        margin-bottom: 150px;
    }
    
    .blog-hero-title {
        font-size: 24px;
    }
}
