/* =========================================
   CONTACT PAGE
========================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19.5px;
}

.contact-card {
    min-height: 0;
    padding: 30px 27px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 25.5px;

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4.5px);
    border-color: #e2e2e2;
    box-shadow: 0 12px 37.5px rgba(0, 0, 0, 0.06);
}

.contact-label {
    margin-bottom: 9px;

    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #90969d;
}

.contact-value {
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.35;
    word-break: break-word;
}

.contact-note {
    margin-top: 39px;

    font-size: 13.5px;
    color: #90969d;
}
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-value {
        font-size: 19.5px;
    }

    .contact-label {
        font-size: 12px;
    }
}


/* Two columns on tablets */

@media (max-width: 1120px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
