.vina-sh-media {
    --vina-sh-media-accent: #a78295;
    --vina-sh-media-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    color: #f5efe7;
}

.vina-sh-media__glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(167,130,149,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.vina-sh-media__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 96px);
}

.vina-sh-media__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.vina-sh-media__heading {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #fff;
}

.vina-sh-media__sub {
    margin: 0;
    opacity: 0.7;
    font-size: 1rem;
}

.vina-sh-media__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

.vina-sh-media__video,
.vina-sh-media__podcast {
    width: 100%;
    height: 300px;
    max-height: 300px;
    min-height: 0;
    box-sizing: border-box;
}

.vina-sh-media__video {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1a2840;
}

.vina-sh-media__play-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    inset: 0;
    text-align: inherit;
    color: inherit;
    min-height: 0;
}

.vina-sh-media__play-trigger--static {
    position: absolute;
    inset: 0;
}

.vina-sh-media__cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s var(--vina-sh-media-ease);
}

.vina-sh-media__play-trigger:hover .vina-sh-media__cover {
    transform: scale(1.06);
}

.vina-sh-media__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.35s, box-shadow 0.35s;
}

.vina-sh-media__play-btn svg { width: 28px; height: 28px; margin-right: -4px; }

.vina-sh-media__play-trigger:hover .vina-sh-media__play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255,255,255,0.3);
}

.vina-sh-media__video-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: clamp(16px, 4vw, 24px);
    background: linear-gradient(transparent, rgba(33, 53, 85, 0.98));
}

.vina-sh-media__video-title {
    margin: 0;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
}

.vina-sh-media__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--vina-sh-media-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vina-sh-media__embed-wrap {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: #000;
}

.vina-sh-media__embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vina-sh-media__podcast {
    position: relative;
    padding: clamp(16px, 2.5vw, 24px);
    border-radius: 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.vina-sh-media__pod-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #331d2c;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vina-sh-media__pod-head {
    display: flex;
    gap: clamp(10px, 2vw, 16px);
    align-items: center;
    margin-bottom: clamp(12px, 2vw, 16px);
    margin-top: clamp(8px, 1.5vw, 12px);
    flex-shrink: 0;
}

.vina-sh-media__pod-meta {
    min-width: 0;
    flex: 1;
}

.vina-sh-media__pod-cover {
    width: clamp(56px, 14vw, 72px);
    height: clamp(56px, 14vw, 72px);
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.vina-sh-media__pod-ep {
    margin: 0 0 6px;
    color: var(--vina-sh-media-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.vina-sh-media__pod-title {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.vina-sh-media__player {
    width: 100%;
    flex-shrink: 0;
}

.vina-sh-media__time-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.vina-sh-media__time {
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    opacity: 0.75;
}

.vina-sh-media__progress-track {
    --vina-sh-progress: 0%;
    position: relative;
    height: 5px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    cursor: pointer;
    margin-bottom: 14px;
}

.vina-sh-media__progress-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: var(--vina-sh-progress);
    background: var(--vina-sh-media-accent);
    border-radius: 999px;
    pointer-events: none;
    transition: width 0.1s linear;
}

.vina-sh-media__progress-thumb {
    position: absolute;
    top: 50%;
    right: var(--vina-sh-progress);
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    pointer-events: none;
    transition: right 0.1s linear;
}

.vina-sh-media__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vina-sh-media__pod-replay {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.vina-sh-media__pod-replay svg {
    width: 20px;
    height: 20px;
}

.vina-sh-media__pod-replay:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.18);
}

.vina-sh-media__pod-replay:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vina-sh-media__pod-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #213555;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.vina-sh-media__pod-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vina-sh-media__pod-play-icon svg {
    width: 24px;
    height: 24px;
}

.vina-sh-media__pod-play-icon--pause {
    display: none;
}

.vina-sh-media__pod-play.is-playing .vina-sh-media__pod-play-icon--play {
    display: none;
}

.vina-sh-media__pod-play.is-playing .vina-sh-media__pod-play-icon--pause {
    display: flex;
}

.vina-sh-media__pod-play:hover {
    transform: scale(1.08);
}

.vina-sh-media__pod-play:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vina-sh-media__audio-hint {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .vina-sh-media__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .vina-sh-media__video-meta {
        padding: 20px 16px 16px;
    }

    .vina-sh-media__video-title {
        font-size: 1rem;
    }

    .vina-sh-media__pod-badge {
        top: 16px;
        left: 16px;
    }
}

.vina-sh-media--animate .vina-sh-media__reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s var(--vina-sh-media-ease), transform 0.75s var(--vina-sh-media-ease);
}

.vina-sh-media--animate.is-visible .vina-sh-media__reveal { opacity: 1; transform: none; }
