.dth-lg-card {
    --dth-lg-accent: #1a73e8;
    --dth-lg-bg: #ffffff;
    --dth-lg-text: #1f2937;
    background: var(--dth-lg-bg);
    color: var(--dth-lg-text);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 860px;
    margin: 1.25rem 0;
}

.dth-lg-image-wrap {
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background: #f5f5f5;
}

.dth-lg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dth-lg-content {
    padding: 1.25rem;
}

.dth-lg-title {
    margin: 0 0 0.35rem;
    font-size: 1.6rem;
    line-height: 1.2;
}

.dth-lg-subtitle,
.dth-lg-description {
    margin: 0.4rem 0;
    line-height: 1.6;
}

.dth-lg-badge,
.dth-lg-badge-inline {
    display: inline-block;
    background: color-mix(in srgb, var(--dth-lg-accent) 12%, white);
    color: var(--dth-lg-accent);
    border: 1px solid color-mix(in srgb, var(--dth-lg-accent) 28%, white);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.dth-lg-actions {
    margin-top: 1rem;
}

.dth-lg-button,
.dth-lg-button-inline {
    display: inline-block;
    background: var(--dth-lg-accent);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.dth-lg-button:hover,
.dth-lg-button-inline:hover {
    transform: translateY(-1px);
    opacity: 0.94;
}

@media (max-width: 640px) {
    .dth-lg-title {
        font-size: 1.3rem;
    }
    .dth-lg-content {
        padding: 1rem;
    }
}
