/* ============================================================
   Seed Out in the Media — seedout-on-media.css
   (used by both /seedout-in-out-world/seedout-on-media and
   /seedout-in-out-world/press-releases)
   ============================================================ */

/* ── Hero: near-black stage with glowing violet + magenta light pools ── */
.som-hero {
    position: relative;
    background: radial-gradient(circle at 8% 10%, rgba(199, 125, 255, 0.28) 0%, transparent 40%),
                radial-gradient(circle at 92% 85%, rgba(255, 94, 168, 0.22) 0%, transparent 45%),
                linear-gradient(135deg, #0a0714 0%, #1f0f38 55%, #3d1a63 100%);
    overflow: hidden;
    padding-top: clamp(2.5rem, 1.8rem + 3vw, 4rem);
    padding-bottom: 64px;
}

.som-hero .container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.som-hero__layout {
    display: flex;
    align-items: center;
    gap: 48px;
}

.som-hero__left {
    flex: 1 1 420px;
    text-align: left;
}

@media (max-width: 900px) {
    .som-hero__layout { flex-direction: column; align-items: stretch; }
    .som-hero__left { text-align: center; }
}

.som-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(199, 125, 255, 0.14);
    border: 1px solid rgba(199, 125, 255, 0.5);
    color: #d7a9ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 5px 16px;
    margin-bottom: 16px;
    box-shadow: 0 0 18px rgba(199, 125, 255, 0.35);
}

.som-hero__title {
    font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 16px;
    text-shadow: 0 0 30px rgba(199, 125, 255, 0.35);
}

.som-hero__sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 480px;
    margin: 0 0 32px;
}

@media (max-width: 900px) {
    .som-hero__sub { max-width: none; margin-inline: auto 32px; }
}

/* Real-content stat strip */
.som-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .som-stats { justify-content: center; }
}

.som-stat__num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.55);
}

.som-stat__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.som-stat + .som-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 40px;
}

@media (max-width: 560px) {
    .som-stats { gap: 20px; }
    .som-stat + .som-stat { padding-left: 20px; }
}

/* ── Featured "latest appearance" card, right side of the hero ── */
.som-featured {
    flex: 0 0 400px;
    max-width: 400px;
}

@media (max-width: 900px) {
    .som-featured { max-width: 460px; margin: 0 auto; }
}

.som-featured__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.som-featured__tag .fa {
    font-size: 0.5rem;
    color: #ff5ea8;
    text-shadow: 0 0 8px rgba(255, 94, 168, 0.9);
    animation: som-pulse 1.8s ease-in-out infinite;
}

@keyframes som-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.som-featured__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(199, 125, 255, 0.3),
                0 20px 50px rgba(0, 0, 0, 0.35),
                0 0 46px rgba(199, 125, 255, 0.25);
}

.som-featured__thumb-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #160f24;
}

.som-featured__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
}

.som-featured__thumb-wrap:hover .som-featured__thumb-img { opacity: 0.82; }

.som-featured__initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3d1a63, #8b3fd1);
}

.som-featured__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    opacity: 0.85;
    pointer-events: none;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 0 12px rgba(199, 125, 255, 0.7));
}

.som-featured__thumb-wrap:hover .som-featured__play { opacity: 1; }

.som-featured__body { padding: 18px 20px 20px; }

.som-featured__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1c1421;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.som-featured__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.som-featured__channel-logo {
    max-height: 22px;
    max-width: 70px;
    width: auto;
    object-fit: contain;
}

.som-featured__channel-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #8b3fd1;
}

.som-featured__date {
    font-size: 0.78rem;
    color: #9a8ba3;
}

.som-featured__date::before {
    content: '\2022';
    margin-right: 8px;
    color: #d8cde6;
}

.som-featured__watch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: #7b2cbf;
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.som-featured__watch:hover {
    background: #6a1fae;
    box-shadow: 0 0 22px rgba(199, 125, 255, 0.6);
}

/* ── Page wrapper + one-appearance-per-row list ── */
.som-page {
    background: #f8f6fa;
    padding: 56px 0 64px;
}

.som-list__heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1c1421;
    margin-bottom: 24px;
}

.som-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.som-row {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 1px solid #e2d8ee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(139, 63, 209, 0.08);
    transition: box-shadow 0.2s ease;
}

.som-row:hover {
    box-shadow: 0 10px 32px rgba(139, 63, 209, 0.2);
}

.som-row__thumb-wrap {
    position: relative;
    display: block;
    flex: 0 0 320px;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #160f24;
}

@media (max-width: 700px) {
    .som-row { flex-direction: column; }
    .som-row__thumb-wrap { flex-basis: auto; width: 100%; }
}

.som-row__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
}

.som-row__thumb-wrap:hover .som-row__thumb-img { opacity: 0.82; }

.som-row__initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3d1a63, #8b3fd1);
}

.som-row__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.2s ease;
    filter: drop-shadow(0 0 10px rgba(199, 125, 255, 0.65));
}

.som-row__thumb-wrap:hover .som-row__play { opacity: 1; }

.som-row__body {
    flex: 1;
    min-width: 0;
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 700px) {
    .som-row__body { padding: 18px 20px 22px; }
}

.som-row__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1c1421;
    margin-bottom: 6px;
}

.som-row__date {
    font-size: 0.78rem;
    color: #9a8ba3;
    margin-bottom: 10px;
    display: block;
}

.som-row__desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.som-row__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.som-row__channel {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.som-row__channel-logo {
    max-height: 26px;
    max-width: 84px;
    width: auto;
    object-fit: contain;
}

.som-row__channel-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #8b3fd1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.som-row__watch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: #7b2cbf;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    flex-shrink: 0;
}

.som-row__watch:hover {
    background: #6a1fae;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.5);
}

.som-empty {
    text-align: center;
    padding: 48px 0;
    color: #666;
}

/* ── Video modal ── */
#somVideoModal .modal-content { background: #000; border: none; }
#somVideoModal .modal-header { border: none; padding: 8px 12px 0; justify-content: flex-end; }
#somVideoModal .modal-body { padding: 0 12px 12px; }
#somVideoModal .ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}
#somVideoModal .ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
