/* Reea Projects - Main Styles */

.reea-projects {
    padding: 2rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.project-item {
    /* background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 50px;
}

.project-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
    
    
}
.project-item a:hover {
    text-decoration: none!important;
}
a.project-link-wrapper:hover {
    text-decoration: none!important;
}
.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    /* background: #f5f5f5; */
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
    aspect-ratio: 4 / 3;
    background: var(--ahm-purple);
    border-radius: var(--ahm-radius);
    /* display: flex; */
    align-items: center;
    justify-content: center;

}

.project-image img {
    width: 100%!important;
    height: auto!important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}
.project-item:hover .project-image {
    
}

.project-content {
    /* padding: 1.5rem; */
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.project-title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.22px;
}

.project-meta {
    margin-bottom: 1rem;
}

.project-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e8f4f8;
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 16px;
    max-height: 20px;
    height: 20px;
    overflow: hidden;
    .fa-circle {
        font-size: 6px;
        margin-left: 4px;
        margin-top: 6px;
        color: rgba(255, 255, 255, 0.64);
        opacity: 0.4;
        display: inline-block;
    }
}

.hashtag {
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    /* line-height: 150%; */
    letter-spacing: 0.48px;
    /* text-transform: uppercase; */
    opacity: 0.4;
    display: inline-block;
    

}


.project-description {
    margin-bottom: 60px;
}

.project-description p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: -0.28px;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.no-projects {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
    
    .project-image {
        height: 180px;
        
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reea-projects {
        padding: 1rem 0;
    }
}


.reea-projects-listselect {
    .col-md-4 {
        width: 95%!important;
    }
    .project-image {
        width: 100%;
        /* height: 240px; */
        overflow: hidden;
        height: 220px!important;
        /* background: #f5f5f5; */
    }

    .project-image img {
        /* width: 100%!important; */
        height: 220px!important;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
}


/* Custom */

.reea-projects-listselect-instance .slick-prev,
.reea-projects-listselect-instance .slick-next {
    top: -20px;
    background-color: #202027;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.reea-projects-listselect-instance .slick-prev {
    left: inherit;
    right: 60px;
}
.reea-projects-listselect-instance .slick-next {
    left: inherit;
    right: 15px;
}

.reea-projects-listselect-instance .slick-prev:before,
.reea-projects-listselect-instance .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    
}
.reea-projects-listselect-instance .slick-prev:before {
    content: "\f053";
}
.reea-projects-listselect-instance .slick-next:before {
    content: "\f054";
}