/* =====================================================
   APPS
===================================================== */

.app-card-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.apps-page {

    max-width: 1000px;

    margin: 0 auto;

    padding: 80px 5vw 100px;
}


/* =====================================================
   LISTA
===================================================== */

.apps-list {

    border-top: 1px solid #d5d5d5;
}


/* =====================================================
   TARJETA
===================================================== */

.app-card {

    display: grid;

    grid-template-columns: 80px 1fr 40px;

    align-items: center;

    gap: 30px;

    padding: 35px 15px;

    border-bottom: 1px solid #d5d5d5;

    text-decoration: none;

    color: #111;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


.app-card:hover {

    background: #fafafa;

    padding-left: 25px;

}


/* =====================================================
   ICONO
===================================================== */

.app-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #777;

    color: white;

    font-size: 1.3rem;
}


/* =====================================================
   INFORMACION
===================================================== */

.app-info h2 {

    margin: 0 0 8px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 2.2rem;

    font-weight: 500;

    line-height: 1;
}


.app-info p {

    max-width: 600px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 1.15rem;

    line-height: 1.45;

    color: #777;
}


/* =====================================================
   FLECHA
===================================================== */

.app-arrow {

    font-family: Georgia, serif;

    font-size: 1.7rem;

    color: #111;

    transition:
        transform 0.3s ease;
}


.app-card:hover .app-arrow {

    transform:
        translateX(6px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {

    .apps-page {

        padding:
            50px 25px 70px;
    }


    .app-card {

        grid-template-columns:
            55px 1fr 25px;

        gap: 18px;

        padding:
            28px 5px;
    }


    .app-icon {

        width: 45px;

        height: 45px;

        font-size: 1rem;
    }


    .app-info h2 {

        font-size: 1.8rem;
    }


    .app-info p {

        font-size: 1rem;
    }

}