.theatre_article {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 40px;
    max-width: 100%;
}

.theatre_article__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    max-width: 100%;
}

.theatre_article__wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 100%;
}

.theatre_article__thumbnail {
    max-width: 100%;
}

.theatre_article__image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.theatre_article__text {
    flex: 1;
    min-width: 250px;
}

.theatre_article__title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.theatre_article__title a {
    text-decoration: none;
    font-weight: 800;
    transition: color 0.2s ease-in-out;
}

.theatre_article__title a:hover,
.theatre_article__title a:focus {
    color: #7e0926;
    outline: none;
    text-decoration: underline;
}

.theatre_article__excerpt {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.theatre_more_link {
    font-size: 0.95rem;
    font-weight: bold;
    padding: 6px 14px;
    background-color: #7e0926;
    color: #fff;
    border: 1px solid #7e0926;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.theatre_more_link:focus {
    outline: 3px solid #ffcc00;
    outline-offset: 2px;
}

.theatre_more_link:hover,
.theatre_more_link:focus {
    background-color: #fff;
    color:  #7e0926;
}

@media screen and (max-width: 768px) {
    .theatre_article__wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .theatre_article__thumbnail {
        width: 100%;
        max-width: 100%;
    }

    .theatre_article__title {
        font-size: 1.3rem;
    }

    .theatre_more_link {
        font-size: 0.9rem;
    }
}
