.dt-showcase {
    --dt-bg: #f7f0e5;
    --dt-surface: #fffdf8;
    --dt-surface-strong: #fff8ef;
    --dt-text: #2f241c;
    --dt-muted: #7e6b5c;
    --dt-accent: #8f4f22;
    --dt-accent-strong: #6e3411;
    --dt-line: rgba(95, 60, 35, 0.12);
    --dt-shadow: 0 22px 48px rgba(74, 45, 24, 0.16);
    margin: 10px 0 50px;
    padding: 28px 0 8px;
    color: var(--dt-text);
}

.dt-showcase,
.dt-showcase * {
    box-sizing: border-box;
}

.dt-showcase__intro {
    margin: 0 auto 32px;
    max-width: 760px;
    text-align: center;
}

.dt-showcase__intro h1 {
    margin: 0 0 14px;
    color: var(--dt-text);
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.dt-showcase__intro p {
    margin: 0;
}

.dt-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border: 1px solid var(--dt-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--dt-accent-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dt-lead {
    color: var(--dt-muted);
    font-size: 17px;
    line-height: 1.7;
}

.dt-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.dt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--dt-line);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 38%),
        linear-gradient(180deg, var(--dt-surface) 0%, #fff 100%);
    box-shadow: var(--dt-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.dt-card:hover,
.dt-card:focus-within,
.dt-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(143, 79, 34, 0.28);
    box-shadow: 0 28px 56px rgba(74, 45, 24, 0.2);
}

.dt-card--wide {
    grid-column: span 2;
}

.dt-card--accent {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #fff7ef 0%, #fff 100%);
}

.dt-card__hero {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: linear-gradient(145deg, #ccb7a1, #8f684e);
}

.dt-card__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 11, 7, 0.04), rgba(18, 11, 7, 0.58));
    pointer-events: none;
}

.dt-card__hero-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.dt-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(180deg, #a75e2e, var(--dt-accent-strong));
    color: #fff;
    box-shadow: 0 12px 28px rgba(70, 30, 8, 0.35);
}

.dt-card__badge-index {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.dt-card__badge-label {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dt-card__gallery-toggle {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 0 18px 0 0;
    background: linear-gradient(180deg, #a75e2e, var(--dt-accent-strong));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.24s ease, transform 0.24s ease, width 0.24s ease;
}

.dt-card__gallery-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: -4px;
}

.dt-card__gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
    gap: 8px;
    padding: 14px;
    background: rgba(28, 16, 9, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.dt-card__gallery img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.97);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.dt-card:hover .dt-card__gallery,
.dt-card:focus-within .dt-card__gallery,
.dt-card.is-active .dt-card__gallery {
    opacity: 1;
    pointer-events: auto;
}

.dt-card:hover .dt-card__gallery img,
.dt-card:focus-within .dt-card__gallery img,
.dt-card.is-active .dt-card__gallery img {
    transform: scale(1);
}

.dt-card:hover .dt-card__gallery-toggle,
.dt-card:focus-within .dt-card__gallery-toggle,
.dt-card.is-active .dt-card__gallery-toggle {
    opacity: 0;
    transform: translateY(10px);
}

.dt-card__copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px 24px 22px;
}

.dt-card__copy h2 {
    margin: 0;
    color: var(--dt-text);
    font-size: 29px;
    line-height: 1.15;
}

.dt-card__copy h3 {
    margin: 8px 0 16px;
    color: var(--dt-accent);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}

.dt-card__copy p {
    margin: 0 0 14px;
    color: var(--dt-muted);
    font-size: 15px;
    line-height: 1.75;
}

.dt-card__copy p:last-of-type {
    margin-bottom: 0;
}

.dt-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: auto;
    padding-top: 18px;
}

.dt-card__footer span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid var(--dt-line);
    border-radius: 999px;
    background: var(--dt-surface-strong);
    color: var(--dt-accent-strong);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 980px) {
    .dt-card-grid {
        grid-template-columns: 1fr;
    }

    .dt-card--wide {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .dt-showcase {
        padding-top: 10px;
    }

    .dt-showcase__intro {
        margin-bottom: 24px;
        text-align: left;
    }

    .dt-showcase__intro h1 {
        font-size: 30px;
    }

    .dt-lead {
        font-size: 16px;
    }

    .dt-card-grid {
        gap: 20px;
    }

    .dt-card {
        border-radius: 24px;
    }

    .dt-card__hero,
    .dt-card__hero-image {
        min-height: 220px;
    }

    .dt-card__badge {
        width: 68px;
        height: 68px;
    }

    .dt-card__copy {
        padding: 22px 18px 18px;
    }

    .dt-card__copy h2 {
        font-size: 24px;
    }

    .dt-card__copy h3 {
        font-size: 16px;
    }

    .dt-card__copy p {
        font-size: 14px;
        line-height: 1.7;
    }
}
