.dp-theater-links {
    margin: 2.5rem 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
}

.dp-theater-links h2,
.dp-theater-links__intro,
.dp-theater-links__trust {
    display: none;
}

.dp-theater-links__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@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__brand img {
        padding-top: 0 !important;
    }

    .dp-theater-links__grid {
        grid-template-columns: 1fr;
    }

    .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;
    }
}
