/* =========================================================
ICT / FPT Equipment

Purpose:
- Style the equipment catalogue.
- Style brand groupings and machine cards.
- Provide interactive hover treatment.

Dependencies:
- equipment.blade.php
========================================================= */


/* =========================================================
Equipment Section
========================================================= */

.ict-fpt-equipment {

    width: 100%;

    padding: 110px 0 120px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.08);

}


.ict-fpt-equipment-inner {

    width: min(
        1200px,
        calc(100% - 80px)
    );

    margin: 0 auto;

}


/* =========================================================
Section Heading
========================================================= */

.ict-fpt-equipment-heading {

    max-width: 680px;

    margin-bottom: 75px;

}


.ict-fpt-equipment-eyebrow {

    display: block;

    margin-bottom: 12px;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.6;

}


.ict-fpt-equipment-heading h2 {

    margin: 0 0 18px;

    font-size: clamp(
        2.2rem,
        4vw,
        3.6rem
    );

    line-height: 1.05;

    letter-spacing: -0.035em;

}


.ict-fpt-equipment-heading p {

    margin: 0;

    max-width: 620px;

    font-size: 1.05rem;

    line-height: 1.7;

    opacity: 0.65;

}


/* =========================================================
Brand Section
========================================================= */

.ict-fpt-equipment-brand {

    margin-bottom: 85px;

}


.ict-fpt-equipment-brand-name {

    margin: 0 0 28px;

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.65;

}


/* =========================================================
Machine Grid
========================================================= */

.ict-fpt-equipment-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 28px;

}


/* =========================================================
Equipment Card
========================================================= */

.ict-fpt-equipment-card {

    position: relative;

    display: block;

    min-height: 430px;

    overflow: hidden;

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.025);

    color: inherit;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease;

}


.ict-fpt-equipment-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(255, 255, 255, 0.18);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.2);

}


/* =========================================================
Card Content
========================================================= */

.ict-fpt-equipment-card-content {

    position: relative;

    z-index: 1;

    height: 100%;

    transition:
        filter 260ms ease,
        opacity 260ms ease;

}


.ict-fpt-equipment-card:hover
.ict-fpt-equipment-card-content {

    filter:
        blur(2px);

    opacity: 0.55;

}


/* =========================================================
Machine Image
========================================================= */

.ict-fpt-equipment-image {

    display: block;

    width: 100%;

    height: 240px;

    padding: 30px;

    object-fit: contain;

}


/* =========================================================
Card Information
========================================================= */

.ict-fpt-equipment-card-info {

    padding: 10px 32px 32px;

}


.ict-fpt-equipment-card-model {

    margin: 0 0 12px;

    font-size: 1.5rem;

    line-height: 1.2;

    font-weight: 700;

}


.ict-fpt-equipment-card-description {

    margin: 0 0 24px;

    max-width: 560px;

    font-size: 0.95rem;

    line-height: 1.65;

    opacity: 0.65;

}

/* =========================================================
Hover Overlay
========================================================= */

.ict-fpt-equipment-card-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(5, 8, 18, 0.22);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 260ms ease;

}


.ict-fpt-equipment-card:hover
.ict-fpt-equipment-card-overlay {

    opacity: 1;

}


/* =========================================================
Magnifying Glass
========================================================= */

.ict-fpt-equipment-hover-icon {

    display: block;

    width: 82px;

    height: 82px;

    object-fit: contain;

    border-radius: 50%;

    filter: invert(1);

    opacity: 0;

    transform:
        scale(0.7);

    transition:
        opacity 260ms ease,
        transform 260ms ease;

} 


.ict-fpt-equipment-card:hover
.ict-fpt-equipment-hover-icon {

    opacity: 1;

    transform:
        scale(1);

}


/* =========================================================
Responsive
========================================================= */

@media (max-width: 850px) {

    .ict-fpt-equipment {

        padding: 85px 0 95px;

    }


    .ict-fpt-equipment-inner {

        width: min(
            100% - 40px,
            1200px
        );

    }


    .ict-fpt-equipment-heading {

        margin-bottom: 55px;

    }


    .ict-fpt-equipment-grid {

        grid-template-columns:
            1fr;

    }


    .ict-fpt-equipment-card {

        min-height: 460px;

    }

}


@media (max-width: 600px) {

    .ict-fpt-equipment {

        padding: 70px 0 80px;

    }


    .ict-fpt-equipment-inner {

        width: min(
            100% - 30px,
            1200px
        );

    }


    .ict-fpt-equipment-card {

        min-height: 420px;

        border-radius: 14px;

    }


    .ict-fpt-equipment-image {

        height: 230px;

        padding: 20px;

    }


    .ict-fpt-equipment-card-info {

        padding: 5px 22px 25px;

    }


    .ict-fpt-equipment-card-model {

        font-size: 1.3rem;

    }

}