/* Styles for responsive layout */

.page-middle {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.desktop-max {
    max-width: 1920px;
}

.hidden {
    position: absolute;
    visibility: hidden;
}

/* PC landscape size */
@media (max-width: 1366px) {
    .pc-fill {
        width: 100%;
    }
}

/* iPad landscape size */
@media (max-width: 1024px) {
    .ipad-fill {
        width: 100%;
    }
}

/* Phone portraint size */
@media (max-width: 770px) {
    .hide-on-phone {
        display: none !important;
    }

    .flex-col-on-phone {
        flex-direction: column !important;
    }

    .phone-fill {
        width: 100% !important;
    }
}

@media (min-width: 770px) {
    .phone-only {
        display: none !important;
    }
}