.Cult_Indo_Hc_section {
    background-color: #ffffff;
}

.Cult_Indo_Hc_main-title {
    color: rgba(9, 37, 58, 0.8);
    margin-bottom: 25px;
    font-family: Sora;
    font-weight: 400;
    font-size: clamp(1.5rem, 1.2214rem + 1.1429vw, 2.25rem);
    line-height: 120%;
    text-align: center;
}

.Cult_Indo_Hc_subtitle {
    color: rgba(9, 37, 58, 0.5);
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    font-weight: 300;
    font-size: clamp(0.875rem, 0.7821rem + 0.381vw, 1.125rem);
    line-height: 170%;
    letter-spacing: 0%;
    text-align: center;
}

/* -----------------------------------
    6-COLUMN GRID LAYOUT
    ----------------------------------- */
.Cult_Indo_Hc_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem; 
    
}

/* -----------------------------------
    CARD STYLES & HOVER EFFECTS
    ----------------------------------- */
.Cult_Indo_Hc_card-wrapper {
    width: 100%;
}

.Cult_Indo_Hc_card {
    position: relative;
    width: 100%;
    
    height: 398px; 
    overflow: hidden;
    background-color: #2b3036;
    border-radius: 4px;
    cursor: pointer;
}

.Cult_Indo_Hc_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Cult_Indo_Hc_gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.Cult_Indo_Hc_hover-overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(0, 0, 0, 0.55); */
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* -----------------------------------
    TEXT & ANIMATION STYLES
    ----------------------------------- */
.Cult_Indo_Hc_content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    z-index: 3;
    display: grid;
    grid-template-rows: 1fr auto; 
    align-items: end;
}

.Cult_Indo_Hc_text-wrapper {
    grid-row: 2; 
}

.Cult_Indo_Hc_card-title {
    color: #ffffff;
    margin: 0;
    font-family: Sora;
    font-weight: 600;
    font-size: clamp(1rem, 0.8143rem + 0.7619vw, 1.5rem);
    line-height: 120%;
    letter-spacing: 0%;
}

.Cult_Indo_Hc_desc-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.Cult_Indo_Hc_desc-inner {
    overflow: hidden;
}

.Cult_Indo_Hc_card-desc {
    color: rgba(255, 255, 255, 1);
    margin: 0;
    padding-top: 0.75rem;
    opacity: 0;
    transform: translate(0, 40px);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 300;
    font-size: clamp(0.875rem, 0.7821rem + 0.381vw, 1.125rem);
    line-height: 170%;
    letter-spacing: 0%;
}

/* -----------------------------------
    DESKTOP GRID MAPPING & HOVERS
    ----------------------------------- */
@media (min-width: 992px) {
    
    .Cult_Indo_Hc_card-wrapper:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
    .Cult_Indo_Hc_card-wrapper:nth-child(2) { grid-area: 1 / 3 / 2 / 5; }
    .Cult_Indo_Hc_card-wrapper:nth-child(3) { grid-area: 1 / 5 / 2 / 7; }
    .Cult_Indo_Hc_card-wrapper:nth-child(4) { grid-area: 2 / 1 / 3 / 4; }
    .Cult_Indo_Hc_card-wrapper:nth-child(5) { grid-area: 2 / 4 / 3 / 7; }

    /* Desktop Hover Triggers */
    .Cult_Indo_Hc_card:hover .Cult_Indo_Hc_img {
        transform: scale(1.05);
    }
    .Cult_Indo_Hc_card:hover .Cult_Indo_Hc_hover-overlay {
        opacity: 1; 
    }
    .Cult_Indo_Hc_card:hover .Cult_Indo_Hc_desc-wrapper {
        grid-template-rows: 1fr; 
    }
    .Cult_Indo_Hc_card:hover .Cult_Indo_Hc_card-desc {
        opacity: 1; 
        transform: translate(0, 0); 
    }
}

/* -----------------------------------
    MOBILE & TABLET ADJUSTMENTS
    ----------------------------------- */
@media (max-width: 991px) and (min-width: 768px) {
    .Cult_Indo_Hc_grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Col on tablet */
    }
    .Cult_Indo_Hc_card-wrapper:nth-child(n) {
        grid-area: auto; /* Reset grid area for natural flow */
    }
}

@media (max-width: 991px) {            
    .Cult_Indo_Hc_card-wrapper {
            grid-area: auto !important; 
    }
    
    .Cult_Indo_Hc_grid {
        grid-template-columns: 1fr;
    }

    .Cult_Indo_Hc_card {
        height: auto;
        aspect-ratio: 2.9 / 3; 
    }

    /* Permanently reveal text on mobile */
    .Cult_Indo_Hc_gradient {
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%);
    }

    .Cult_Indo_Hc_desc-wrapper {
        grid-template-rows: 1fr; 
    }

    .Cult_Indo_Hc_card-desc {
        opacity: 1; 
        transform: translate(0, 0); 
    }
}