﻿/* =========================================================
   HOME SCHOOL ACTIVITIES
========================================================= */

.home-school-activities {
    position: relative;
    padding: 55px 0;
    overflow: hidden;
}

.home-school-activities-container {
    position: relative;
}

/* =========================================================
   MAIN GRID
========================================================= */

.home-school-activities-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 24px;
}

.home-school-activities-list-b {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
    margin-top: 22px;
}

/* =========================================================
   ITEM
========================================================= */

.home-school-activities-item,
.home-school-activities-item-b {
    position: relative;
}

.home-school-activities-img,
.home-school-activities-img-b {
    display: block;
    text-decoration: none;
}

/* =========================================================
   IMAGE
========================================================= */

.img-decor-item-new,
.img-decor-item-new-b {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
}

    .img-decor-item-new::before,
    .img-decor-item-new-b::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,rgba(0,0,0,.18),transparent 45%);
        opacity: 0;
        visibility: hidden;
        transition: all .35s ease;
        z-index: 2;
    }

    .img-decor-item-new img {
        display: block;
        width: 100%;
        height: 310px;
        object-fit: cover;
        border-radius: 24px;
        transition: transform .7s cubic-bezier(.2,.6,.2,1);
    }

    .img-decor-item-new-b img {
        display: block;
        width: 100%;
        height: 205px;
        object-fit: cover;
        border-radius: 24px;
        transition: transform .7s cubic-bezier(.2,.6,.2,1);
    }

/* =========================================================
   HOVER EFFECT
========================================================= */

.home-school-activities-item:hover .img-decor-item-new img,
.home-school-activities-item-b:hover .img-decor-item-new-b img {
    transform: scale(1.08);
}

.home-school-activities-item:hover .img-decor-item-new::before,
.home-school-activities-item-b:hover .img-decor-item-new-b::before {
    opacity: 1;
    visibility: visible;
}

.home-school-activities-item:hover .home-school-activities-content h3,
.home-school-activities-item-b:hover .home-school-activities-content-b h3 {
    color: #1743aa;
}

.home-school-activities-item,
.home-school-activities-item-b {
    transition: transform .3s ease;
}

    .home-school-activities-item:hover,
    .home-school-activities-item-b:hover {
        transform: translateY(-4px);
    }

/* =========================================================
   CONTENT
========================================================= */

.home-school-activities-content {
    margin-top: 22px;
}

.home-school-activities-content-b {
    margin-top: 14px;
}

.home-school-activities-content h3 {
    margin: 10px 0 0;
    color: #1c1c1c;
    font-size: 22px;
    line-height: 155%;
    font-family: 'Montserrat-SemiBold';
    transition: all .25s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-school-activities-content-b h3 {
    margin: 6px 0 0;
    color: #1c1c1c;
    font-size: 17px;
    line-height: 150%;
    font-family: 'Montserrat-SemiBold';
    transition: all .25s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* =========================================================
   META
========================================================= */

.home-school-activities-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 10px;
}

.home-school-activities-options-b {
    margin-bottom: 6px;
}

    .home-school-activities-options .options-item,
    .home-school-activities-options-b .options-item {
        display: inline-flex;
        align-items: center;
    }

        .home-school-activities-options .options-item img,
        .home-school-activities-options-b .options-item img {
            width: 15px;
            height: 15px;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(22%) sepia(28%) saturate(4050%) hue-rotate(204deg) brightness(95%) contrast(91%);
        }

.options-item span {
    display: inline-block;
    margin-left: 7px;
    color: #666;
    font-size: 13px;
    line-height: normal;
    font-family: 'Montserrat-Medium';
}

/* =========================================================
   DESCRIPTION
========================================================= */

h4.home-school-activities-descript {
    position: relative;
    margin: 12px 0 0;
    padding-top: 12px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 180%;
    font-weight: normal;
    text-align: justify;
    font-family: 'Montserrat-Medium';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

    h4.home-school-activities-descript::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 110px;
        height: 1px;
        background: #d9d9d9;
    }

/* =========================================================
   ABOUT IMAGE
========================================================= */

.full-about-img {
    position: relative;
    z-index: 2;
    margin-top: -92px;
}

    .full-about-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1199px) {
    .home-school-activities-list {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .full-about-img {
        position: relative;
        z-index: 2;
        margin-top: -26px;
    }

    .home-school-activities-list-b {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .home-school-activities-list .home-school-activities-item:nth-child(1) .img-decor-item-new img {
        height: 240px;
    }

    .img-decor-item-new img {
        height: 350px;
    }
}

@media(max-width:767px) {
    .home-school-activities {
        padding: 40px 0;
        padding-bottom: 0;
    }

    .home-school-activities-list {
        gap: 15px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .home-school-activities-item:nth-child(2) {
        display: none;
    }

    .home-school-activities-list-b {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 15px;
        margin-top: 15px;
    }

    .img-decor-item-new img {
        height: 150px;
        border-radius: 10px;
    }

    .img-decor-item-new-b img {
        height: 150px;
        border-radius: 10px;
    }

    .img-decor-item-new,
    .img-decor-item-new-b {
        border-radius: 10px;
    }

    .home-school-activities-content {
        margin-top: 18px;
    }

        .home-school-activities-content h3 {
            font-size: 16px;
            line-height: 150%;
            text-align: justify;
        }

    .home-school-activities-content-b h3 {
        font-size: 15px;
        text-align: justify;
    }

    h4.home-school-activities-descript {
        margin-top: 9px;
        padding-top: 9px;
        font-size: 14px;
        line-height: 145%;
        font-family: 'Montserrat-Medium';
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .home-school-activities-options {
        gap: 5px;
    }

    .options-item span {
        font-size: 12px;
    }

    .home-school-activities-item:hover,
    .home-school-activities-item-b:hover {
        transform: none;
    }
}

/* =========================================================
   CATEGORY MOBILE SLIDER
========================================================= */

.student-club-category-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}