/* ===========================================
   DRM Email CTA
=========================================== */
.drm-email-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 502px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid #d8d8e130;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
}
.drm-email-cta__input {
    flex: 1;
    border: none !important;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 12px;
    font-size: 16px;
}
.drm-email-cta__input::placeholder { color: #aaa; }
.drm-email-cta__button {
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: 8px;
    background: #F25217 !important;
    color: #fff;
    font-weight: 600;
    transition: all .3s ease;
}
.drm-email-cta__button:hover { background: #f57545; }
.drm-email-cta__button:disabled { opacity: .7; cursor: not-allowed; }
.drm-email-cta__message {
    max-width: 502px;
    margin: 10px auto 0;
    font-size: 14px;
    display: none;
}
.drm-email-cta__message.drm-error  { color: #ff6b6b; }
.drm-email-cta__message.drm-success { color: #4caf50; }
@media (max-width:550px) {
    .drm-email-cta { flex-direction: column; }
    .drm-email-cta__button { width: 100%; }
}

/* ===========================================
   DRM Media Slider
=========================================== */
.drm-taxonomy-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.drm-widget-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.drm-widget-title span {
    font-size: 28px;
    line-height: 1;
    color: #F25217;
}

/* Viewport clips overflow */
.drm-slider-viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
}
.drm-slider-viewport.drm-dragging {
    cursor: grabbing;
}

/* Track */
.drm-taxonomy-track {
    display: flex;
    gap: 14px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    user-select: none;
}
.drm-taxonomy-track.drm-no-transition {
    transition: none;
}

/* Card */
.drm-taxonomy-card { flex: 0 0 auto; }
.drm-taxonomy-card a {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}
.drm-taxonomy-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
    pointer-events: none;
}
.drm-taxonomy-card:hover img { transform: scale(1.04); }

.drm-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 8px 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .drm-widget-title { font-size: 22px; }
    .drm-widget-title span { font-size: 22px; }
}
@media (max-width: 767px) {
    .drm-widget-title { font-size: 18px; margin-bottom: 14px; }
    .drm-widget-title span { font-size: 18px; }
    .drm-taxonomy-track { gap: 10px; }
    .drm-card-label { font-size: 11px; }
}
