/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {}

@media (max-width: 768px) {

    .desktop-view {
        display: none;
    }

    .content-container {
        max-width: 100%;
        padding: 16px;
    }

    .page-title {
        font-size: 24px !important;
        margin: 40px 0 16px;
    }

    .content-container .section-header .section-header__wrapper .object-header-title {
        display: none;
    }

    .content-container {
        padding: 10px;
    }

    .section-header__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .buttons-wrap {
        margin-top: 10px;
        width: 100%;
    }

    .buttons-wrap a {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }

    .sheet_container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .sheet-container .sheet-date {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .sheet_container a {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .descriptions__description details {
        margin-bottom: 10px;
    }

    .element__descriptions h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}


@media screen and (max-width: 640px) {
    .page-title {
        text-align: center;
        font-size: 24px;
    }
}

/* Стили для очень маленьких экранов */
@media (max-width: 480px) {
    .page-title {
        font-size: 18px;
    }

    .sheet_container {
        padding: 5px;
    }

    .sheet_container .sheet-date {
        font-size: 12px;
    }

    .link-button {
        font-size: 12px;
        padding: 8px;
    }

    .description-text {
        font-size: 12px;
    }
}