.theatre_page__layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.theatre_page__content {
    flex: 1 1 auto;
    padding: 2rem 1rem;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.6;
}

.theatre_page__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.theatre_page__body {
    font-size: 1rem;
    color: #333;
}

.theatre_page__sidebar {
    width: 500px;
    flex-shrink: 0;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
    padding: 1.5rem;
    border: 1px solid #ccc;
}

.theatre_page__sidebar nav,
.theatre_page__sidebar .widget {
    margin-bottom: 1.5rem;
}

.theatre_page__sidebar a {
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.theatre_page__comments {
    margin-top: 3rem;
}

.wp-block-archives-dropdown,
.widget_archive {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.wp-block-archives__label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.wp-block-archives-dropdown select,
.widget_archive select {
    appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 16px;
    font-size: 15px;
    color: #222;
    cursor: pointer;
    max-width: 320px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-archives-dropdown select:focus,
.widget_archive select:focus {
    border-color: #7e0926;
    outline: none;
    box-shadow: 0 0 0 3px rgba(126, 9, 38, 0.3);
}

.wp-block-archives-dropdown select:hover,
.widget_archive select:hover {
    border-color: #7e0926;
}

@media screen and (max-width: 991px) {
    .theatre_page__layout {
        flex-direction: column;
    }

    .theatre_page__sidebar {
        width: 100%;
        position: static;
        margin-top: 2rem;
    }

    .theatre_page__title {
        font-size: 1.75rem;
    }

    .theatre_page__body {
        font-size: 1rem;
    }
}
