.inner-page-hero-section {
    background: url(./inner-pages/images/blog-page/breadcrumb-bg.png);
    background-size: cover;
    background-position: center center;
}

.social-media-wrapper a:hover svg path {
    fill: #0387BC;
}

/* Blog Redesign Styles */
.blog-cards-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-card.full-width {
    width: 100%;
    margin-bottom: 4rem;
}

.blog-card.full-width .blog-title {
    width: 105%;
    /* Slightly less overlap for full width */
    margin-left: -5%;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.blog-column-left,
.blog-column-right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-column-right {
    margin-top: 200px;
    /* Staggered starting height */
}

.blog-card {
    display: flex;
    flex-direction: row;
    height: auto;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: visible;
    /* Allow heading to overlap */
    transition: transform 0.3s ease;
    align-items: stretch;
}

.blog-card.reverse {
    flex-direction: row-reverse;
}

.blog-image-container {
    flex: 1;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    border-radius: 0 !important;
}

.blog-column-right .blog-image-container {
    max-height: 100%;
    /* Smaller images in the right column */
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-content {
    flex: 0 0 350px;
    /* Precise width for color block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem !important;
    color: white;
    position: relative;
    z-index: 2;
}

.blog-column-right .blog-content {
    flex: 0 0 250px;
    /* Smaller color block for right column */
}

.blog-card .blog-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #121212 !important;
    /* Titles are black in the reference images */
    position: relative;
    z-index: 10;
    width: 110%;
    /* Make title wide enough to overlap */
    margin-left: -10%;
    /* Pull it over the image */
}

.blog-card.reverse .blog-title {
    margin-left: 0;
    margin-right: -10%;
    /* Pull it over the image in reverse layout */
    text-align: left;
}

.blog-card .blog-meta {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Color Themes */
.bg-teal {
    background-color: #00f2ad !important;
}

.bg-pink {
    background-color: #ff60ad !important;
    height: 400px;
}

.bg-blue {
    background-color: #55c3f2 !important;
    height: 350px;
}

/* Category badge override */
.category-badge {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .blog-column-right {
        margin-top: 0;
    }

    .blog-card {
        flex-direction: column !important;
    }

    .blog-content {
        flex: none;
        width: 100% !important;
        padding: 3rem 1.5rem !important;
    }

    .blog-card .blog-title {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.8rem;
    }
}