.kc-home-blog-wrapper {
    box-sizing: border-box;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'DM Sans', sans-serif;
    color: #0A050C;
    background-color: #F7F5F2;
    overflow: hidden;
}

/* Post Grid asymmetrical 60% and 40% */
.kc-home-blog-grid {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    gap: 20px;
}

.kc-home-blog-card {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #FFFFFF;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kc-home-blog-card.is-main {
    width: 60%;
}

.kc-home-blog-card.is-secondary {
    width: 40%;
}

/* Clickable overlay */
.kc-home-blog-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    cursor: pointer;
}

/* Image styling */
.kc-home-blog-image-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.kc-home-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Body and content inside cards */
.kc-home-blog-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.kc-home-blog-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #E6461E;
}

.kc-home-blog-title {
    font-family: 'Bebas Neue', sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.15;
    transition: color 0.25s ease;
}

.kc-home-blog-excerpt {
    font-family: 'DM Sans', sans-serif;
    margin: 0 0 24px 0;
    line-height: 1.5;
    opacity: 0.85;
}

/* Sticky footer metadata row */
.kc-home-blog-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.kc-home-blog-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    opacity: 0.7;
}

.kc-home-blog-readlink {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #E6461E;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Interactive zoom and colors shift on hover */
.kc-home-blog-card:hover .kc-home-blog-img {
    transform: scale(1.025);
}

.kc-home-blog-card:hover .kc-home-blog-readlink {
    color: #0A050C;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .kc-blog-tablet-fifty .kc-home-blog-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .kc-blog-tablet-fifty .kc-home-blog-card {
        width: calc(50% - 10px) !important;
    }
    .kc-blog-tablet-stacked .kc-home-blog-grid {
        flex-direction: column;
    }
    .kc-blog-tablet-stacked .kc-home-blog-card {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .kc-home-blog-grid {
        flex-direction: column !important;
        gap: 20px;
    }
    .kc-home-blog-card {
        width: 100% !important;
    }
    .kc-home-blog-card.is-main .kc-home-blog-image-wrap {
        height: 260px !important;
    }
    .kc-home-blog-card.is-secondary .kc-home-blog-image-wrap {
        height: 240px !important;
    }
}
