/* Dedicated contacts page layout */

.contacts-page-layout {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #133636 0%, #EBEBEB 100%);
    background-attachment: fixed;
}

.contacts-page {
    flex: 1;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.contacts-page main {
    width: 100%;
}

.contacts-page .self-contacts-section::before {
    display: none;
}

.contacts-page .self-contact-method {
    min-width: 0;
}

@media (min-width: 769px) {
    .contacts-page .self-contacts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
