/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra Child Theme
Author: Brainstorm Force
Author URI: https://wpastra.com/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* ============================
   PROJECT FILTER WRAPPER
============================ */
.project-filter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* =========================
   FORCE ASTRA OVERRIDE
========================= */

.project-filter .project-terms .project-term {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
	column-gap:12px
    cursor: pointer;
    color: #444;
    position: relative;
    box-shadow: none;
}

/* Hover */
.project-filter .project-terms .project-term:hover {
    color: #0a7a5f;
}

/* Active */
.project-filter .project-terms .project-term.active {
    color: #0a7a5f;
}

/* Underline */
.project-filter .project-terms .project-term.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background-color: #0a7a5f;
}



/* ============================
   PROJECT CARD
============================ */
.project-item {
    background: #fff;
}

/* Image */
.project-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Title */
.project-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    color: #000;
    line-height: 1.4;
}


/* Subtle hover (corporate feel) */
.project-item:hover img {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}


/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .project-terms {
        gap: 20px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-item img {
        height: 220px;
    }
}

