/* =====================================================
   CATALOG PAGE
===================================================== */

.catalog {

    padding: 80px 0;

}

/* =====================================================
   HEADER
===================================================== */

.catalog__header {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 60px;

}

.catalog__header h1 {

    font-size: 46px;

    margin-bottom: 24px;

}

.catalog__header p {

    font-size: 18px;

    line-height: 1.8;

}

/* =====================================================
   GRID
===================================================== */

.catalog__grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));

    gap: 35px;

}

/* =====================================================
   CARD
===================================================== */

.machine-card {

    background: white;

    border: 1px solid var(--color-border);

    border-radius: 16px;

    overflow: hidden;

    transition: var(--transition);

}

.machine-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,0,0,.08);

}

/* =====================================================
   IMAGE
===================================================== */

.machine-card__image {

    aspect-ratio: 4 / 3;

    background: #f3f4f6;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #9ca3af;

    font-size: 20px;

    font-weight: 600;

}

.machine-card__image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.3s;

}

/* =====================================================
   CONTENT
===================================================== */

.machine-card__content {

    padding: 28px;

}

.machine-card__content h2 {

    font-size: 28px;

    margin-bottom: 10px;

}

.machine-card__type {

    color: var(--color-gray);

    margin-bottom: 24px;

}

/* =====================================================
   INFO
===================================================== */

.machine-card__info {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 30px;

}

.machine-card__info p {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.machine-card__info strong {

    color: var(--color-dark);

}

/* =====================================================
   BUTTON
===================================================== */

.machine-card .button {

    width: 100%;

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    .catalog{

        padding:60px 0;

    }

    .catalog__header{

        margin-bottom:40px;

    }

    .catalog__header h1{

        font-size:34px;

    }

    .catalog__header p{

        font-size:16px;

    }

    .catalog__grid{

        grid-template-columns:1fr;

    }

}