/* ============================================================
   SITIOS WEB CORPORATIVOS
   ============================================================ */

.website-portfolio-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* ============================================================
   PROYECTO
   ============================================================ */

.website-project {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: white;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.website-project:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(39,52,112,.06);
}


/* ============================================================
   CAPTURA
   ============================================================ */

.website-project-preview {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    display: block;

    border-bottom: 1px solid var(--border);

    background: var(--surface);

    text-decoration: none;
}

.website-project-preview::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255,255,255,.42);

    pointer-events: none;

    transition:
        background-color .25s ease;
}

.website-project-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    filter:
        saturate(.72)
        contrast(.94);

    transform: scale(1);

    transition:
        filter .25s ease,
        transform .35s ease;
}

.website-project:hover .website-project-preview::after {
    background: rgba(255,255,255,.14);
}

.website-project:hover .website-project-image {
    filter:
        saturate(.95)
        contrast(1);

    transform: scale(1.01);
}


/* ============================================================
   TEXTO
   ============================================================ */

.website-project-body {
    padding: 25px 27px 27px;
}

.website-project-body h3 {
    margin-bottom: 9px;

    color: var(--text);

    font-size: 1.22rem;
}

.website-project-body p {
    margin: 0 0 19px;

    color: var(--muted);

    font-size: .92rem;
    line-height: 1.7;
}


/* ============================================================
   ENLACE
   ============================================================ */

.website-project-link {
    display: inline-flex;
    align-items: center;

    color: var(--mundawa);

    font-size: .87rem;
    font-weight: 650;

    text-decoration: none;

    transition:
        color .15s ease,
        transform .15s ease;
}

.website-project-link:hover {
    color: var(--mundawa-light);

    transform: translateX(3px);
}


/* ============================================================
   DISPOSITIVOS SIN HOVER
   ============================================================ */

@media (hover: none) {

    .website-project-preview::after {
        background: rgba(255,255,255,.24);
    }

    .website-project-image {
        filter:
            saturate(.88)
            contrast(.98);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

    .website-portfolio-grid {
        grid-template-columns: 1fr;
    }

}