.dp-theater-links {
    margin: 2rem 0;
    padding: 2rem 1.5rem 1.5rem;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(18, 24, 35, 0.08);
}

.dp-theater-links h3 {
    display: block;
    margin: 0 0 0.9rem;
    color: #142641;
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.dp-theater-links__intro {
    margin: 0 0 1.75rem;
    color: #535861;
    font-size: 1.05rem;
    text-align: center;
}

.dp-theater-links__movie-info {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1.15rem 0;
    border: 0;
    border-bottom: 1px solid #dfe5eb;
    border-radius: 0;
    background: transparent;
    color: #142641;
    text-align: left;
}

.dp-theater-links__movie-info > .dp-theater-links__movie-meta {
    grid-column: 1;
    min-width: 0;
}

.dp-theater-links__movie-info > .dp-theater-links__showtimes {
    grid-column: 2;
    min-width: 0;
}

.dp-theater-links__movie-info > .dp-theater-links__movie-meta,
.dp-theater-links__movie-info > .dp-theater-links__showtimes,
.dp-theater-links__movie-info > time {
    position: static !important;
    float: none !important;
    transform: none !important;
}

.dp-theater-links__movie-meta {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.dp-theater-links__movie-meta strong {
    font-size: 0.95rem;
    line-height: 1.35;
}

.dp-theater-links__movie-info small {
    color: #e21e2b;
    font-size: 0.8rem;
}

.dp-theater-links__showtimes {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-wrap: wrap !important;
    gap: 0.5rem;
}

.dp-theater-links__showtimes span {
    display: inline-flex !important;
    min-width: 92px;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border: 1px solid #2d9b62;
    border-radius: 6px;
    background: #fff;
    color: #2d9b62;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.dp-theater-links__movie-info time {
    flex: 0 0 auto;
    color: #535861;
    font-size: 0.78rem;
    text-align: right;
}

.dp-theater-links__trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid #edf0f2;
    color: #535861;
    font-size: 0.9rem;
    text-align: center;
}

.dp-theater-links__trust-message::before {
    display: none !important;
}

.dp-theater-links__updated {
    display: block;
    min-width: 0;
    white-space: nowrap;
    color: #80868f;
    font-size: 0.9rem;
    text-align: center;
}

.dp-theater-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 255px));
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 601px) {
    .dp-theater-links .dp-theater-links__grid {
        display: flex;
        flex-flow: row nowrap;
        justify-content: center;
        align-items: stretch;
    }

    .dp-theater-links .dp-theater-links__grid > .dp-theater-links__card {
        flex: 0 1 255px;
        width: 255px;
        min-width: 0;
    }
}

.dp-theater-links__card {
    display: flex;
    min-width: 0;
    width: 100%;
    max-width: 255px;
    margin: 0 auto;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #f3f3f3;
    box-shadow: 0 8px 18px rgba(18, 24, 35, 0.12);
    color: #142641;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.dp-theater-links__card:hover,
.dp-theater-links__card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(18, 24, 35, 0.18);
}

.dp-theater-links__brand {
    position: relative;
    display: grid;
    place-items: center;
    width: 255px;
    max-width: 100%;
    min-height: 128px;
    height: 128px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    overflow: hidden;
}

.dp-theater-links__brand::before {
    display: none;
}

.dp-theater-links__brand img,
.dp-theater-links__text-logo {
    position: relative;
    z-index: 1;
}

.dp-theater-links__brand img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 128px;
    max-height: 128px;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.dp-theater-links__text-logo {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.dp-theater-links__cta {
    display: flex;
    width: 255px;
    max-width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0 1.2rem;
    background: #eb2c2c;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
}

.dp-theater-links__arrow {
    font-size: 1.8rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .dp-theater-links__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dp-theater-links {
        padding: 1.5rem 1rem 1rem;
    }

    .dp-theater-links h3 {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .dp-theater-links__brand img {
        padding-top: 0 !important;
    }

    .dp-theater-links__grid {
        grid-template-columns: 1fr;
    }

    .dp-theater-links__movie-info {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: stretch;
    }

    .dp-theater-links__movie-info > .dp-theater-links__movie-meta,
    .dp-theater-links__movie-info > .dp-theater-links__showtimes,
    .dp-theater-links__movie-info > time {
        grid-column: 1 !important;
    }

    .dp-theater-links__movie-meta {
        flex-basis: auto;
    }

    .dp-theater-links__movie-info time {
        text-align: left;
    }

    .dp-theater-links__trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.35rem;
        padding-top: 0.5rem;
        text-align: left;
    }

    .dp-theater-links__trust-message {
        margin: 0;
        line-height: 1.2;
    }

    .dp-theater-links__updated {
        margin: 0;
        text-align: center;
        color: #80868f;
    }

    .dp-theater-links__brand {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 140px;
        min-height: 140px;
        overflow: hidden;
        padding: 10px;
    }

    .dp-theater-links__brand img {
        display: block;
        width: 100%;
        max-width: 250px;
        height: 120px;
        max-height: 120px;
        object-fit: contain;
        object-position: center;
        transform: none;
    }
}
