/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 1rem;
    color: var(--color-text-muted);
    background: #F8F9FA;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb-current {
    color: var(--color-accent);
    font-weight: 700;
}


.blog-album-section {
    padding: 60px 0;
}


.blog-album-container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.blog-section-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.blog-section-title {
    grid-column: 2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0;
    /* text-transform: uppercase; */
}

.blog-learn-more {
    grid-column: 3;
    justify-self: end;
    font-size: 0.9rem;
    font-weight: 600;
    color: #006699;
    text-decoration: none;
    white-space: nowrap;
}

.blog-learn-more:hover {
    text-decoration: underline;
}

/* =========================================
   Top Hero Grid
   ========================================= */
.blog-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-hero-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tall Card (Overlay Text Bottom-Left) */
.blog-card-tall {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.blog-card-tall .img-wrapper {
    width: 100%;
    flex: 1;
    overflow: hidden;
    margin: 0;
    min-height: 350px;
}

.blog-card-tall .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.blog-card-tall:hover .img-wrapper img {
    transform: scale(1.05);
}

.blog-card-tall .card-content {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 85%;
    background: #fff;
    padding: 20px 20px 0 0;
    box-sizing: border-box;
    z-index: 2;
}

.blog-card-tall .card-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: #000;
    text-decoration: none;
}

.blog-card-tall .card-excerpt {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Overlay Card (Text Inside Image) */
.blog-card-overlay {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex: 1; /* allow it to fill column height */
    text-decoration: none;
}

.blog-card-overlay img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 65%);
}

.blog-card-overlay .card-content {
    position: relative;
    z-index: 1;
    padding: 20px 20px 15px 0; /* Flush left */
    width: 100%;
}

.blog-card-overlay .card-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
    margin: 0px 0px 7px 15px;
}


/* =========================================
   Industry Trends Section (Light Blue bg)
   ========================================= */
.section-trends {
    background-color: #cbe6f1; /* Adjust to match the light blue from the image */
    padding: 60px 0;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trend-card {
    display: flex;
    background-color: #fff;
    padding: 15px;
    gap: 15px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.trend-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trend-card .img-wrapper {
    flex: 0 0 100px;
    height: 100px;
    overflow: hidden;
}

.trend-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trend-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.trend-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trend-card .card-title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #000;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trend-card .card-date {
    font-size: 0.8rem;
    color: #888;
}

/* =========================================
   News Section
   ========================================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card .img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.news-card .card-content {
    display: flex;
    flex-direction: column;
}

.news-card .card-title {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #000;
    text-decoration: none;
}

.news-card .card-date {
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 992px) {
    .blog-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
    }
    .trends-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
}