/* =========================================================
   AGRICULTURE PROJECTS PAGE
========================================================= */

.agriculture-projects-page,
.agriculture-projects-page *,
.agriculture-projects-page *::before,
.agriculture-projects-page *::after {
    box-sizing: border-box;
}

.agriculture-projects-page {
    width: 100%;
    background: #ffffff;
    color: #111827;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.agri-projects {
    max-width: 1150px;
    margin: 0 auto;
    padding: 80px 25px;
}


/* HEADER */

.agri-header {
    margin-bottom: 45px;
}

.agri-label {
    margin-bottom: 8px;
    color: #06B6D4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.agri-header h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.15;
}

.agri-header h1 span {
    color: #06B6D4;
}

.agri-header p {
    max-width: 700px;
    margin: 12px 0 0;
    color: #64748B;
    font-size: 14px;
    line-height: 1.7;
}


/* PROJECT GRID */

.agri-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}


/* PROJECT CARD */

.agri-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.agri-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #06B6D4;
}

.agri-card:hover {
    transform: translateY(-5px);
    border-color: #A5F3FC;
    box-shadow: 0 15px 35px rgba(15, 23, 42, .09);
}


/* CARD TOP */

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 14px;
}

.project-number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ECFEFF;
    color: #0891B2;
    font-size: 13px;
    font-weight: 800;
}

.agri-card h2 {
    flex: 1;
    margin: 0;
    padding-top: 6px;
    color: #111827;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}


/* DESCRIPTION */

.project-description {
    margin: 0 0 16px;
    color: #64748B;
    font-size: 13px;
    line-height: 1.7;
}


/* LINK */

.agri-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    color: #06B6D4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-decoration: none;
    text-transform: uppercase;
}

.agri-link:hover {
    color: #0284C7;
}

.agri-link svg {
    width: 13px;
    height: 13px;
}


/* TEAM */

.agri-team {
    padding: 12px 14px;
    border-left: 3px solid #06B6D4;
    border-radius: 6px;
    background: #F8FAFC;
    color: #64748B;
    font-size: 12px;
    line-height: 1.6;
}

.agri-team strong {
    color: #111827;
}


/* SUBHEADINGS */

.agri-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 22px 0 10px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.agri-card h3::before {
    content: "";
    width: 5px;
    height: 16px;
    flex: 0 0 5px;
    border-radius: 5px;
    background: #06B6D4;
}


/* LISTS */

.agri-card ul,
.agri-card ol {
    margin: 0;
    padding-left: 20px;
}

.agri-card li {
    margin-bottom: 8px;
    padding-left: 3px;
    color: #475569;
    font-size: 12.5px;
    line-height: 1.65;
}

.agri-card li::marker {
    color: #06B6D4;
    font-weight: 700;
}


/* FULL WIDTH PROJECT */

.agri-card.full {
    grid-column: 1 / -1;
}


/* TABLET */

@media (max-width: 800px) {
    .agri-projects {
        padding: 60px 20px;
    }

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

    .agri-card.full {
        grid-column: auto;
    }
}


/* MOBILE */

@media (max-width: 600px) {
    .agri-projects {
        padding: 45px 15px;
    }

    .agri-header {
        margin-bottom: 28px;
    }

    .agri-label {
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .agri-header h1 {
        font-size: 27px;
    }

    .agri-header p {
        font-size: 12px;
    }

    .agri-grid {
        gap: 12px;
    }

    .agri-card {
        padding: 17px;
        border-radius: 11px;
    }

    .card-top {
        margin-bottom: 11px;
    }

    .project-number {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        border-radius: 8px;
        font-size: 10px;
    }

    .agri-card h2 {
        padding-top: 3px;
        font-size: 16px;
    }

    .project-description {
        font-size: 11px;
        line-height: 1.6;
    }

    .agri-team {
        padding: 10px 11px;
        font-size: 10.5px;
    }

    .agri-card h3 {
        margin-top: 18px;
        font-size: 10px;
    }

    .agri-card li {
        margin-bottom: 6px;
        font-size: 10.5px;
    }

    .agri-link {
        font-size: 9px;
    }
}


/* VERY SMALL PHONES */

@media (max-width: 380px) {
    .agri-projects {
        padding: 38px 12px;
    }

    .agri-header h1 {
        font-size: 24px;
    }

    .agri-card {
        padding: 14px;
    }

    .agri-card h2 {
        font-size: 14px;
    }

    .project-description {
        font-size: 10px;
    }

    .agri-team,
    .agri-card li {
        font-size: 9.5px;
    }
}
