/* Featured Videos Section */
.featured-videos {
    margin-bottom: 15px;
}

.featured-videos__header {
    background: none;
    display: block;
    font-family: 'Roboto Condensed', Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 14px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 8px 0;
    padding: 7px 0;
}

.featured-videos__header-featured {
    color: #000;
}

.featured-videos__header-videos {
    color: #d2232a;
}

.featured-videos__grid {
    display: flex;
    gap: 3px;
}

.featured-videos__big {
    flex: 0 0 65%;
    max-width: 65%;
}

.featured-videos__sidebar {
    flex: 0 0 calc(35% - 3px);
    max-width: calc(35% - 3px);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.featured-videos__card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
    text-decoration: none;
    color: #fff;
}

.featured-videos__card:hover {
    text-decoration: none;
    color: #fff;
}

.featured-videos__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.featured-videos__card:hover img {
    opacity: 0.8;
}

.featured-videos__big .featured-videos__card {
    height: 100%;
}

.featured-videos__sidebar .featured-videos__card {
    flex: 1;
}

/* Play button overlay */
.featured-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.featured-videos__play-btn svg {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.featured-videos__play-btn .play-circle {
    fill: rgba(0, 0, 0, 0.5);
    transition: fill 0.2s ease;
}

.featured-videos__play-btn .play-arrow {
    fill: #fff;
}

.featured-videos__card:hover .play-circle {
    fill: #d2232a;
}

/* Big card play button */
.featured-videos__big .featured-videos__play-btn svg {
    width: 80px;
    height: 80px;
}

/* Sidebar card play button */
.featured-videos__sidebar .featured-videos__play-btn svg {
    width: 50px;
    height: 50px;
}

/* Title overlay */
.featured-videos__title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 10px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.featured-videos__title {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-videos__big .featured-videos__title {
    font-size: 20px;
}

.featured-videos__sidebar .featured-videos__title {
    font-size: 13px;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .featured-videos__grid {
        flex-direction: column;
    }

    .featured-videos__big {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .featured-videos__sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        flex-direction: column;
    }

    .featured-videos__big .featured-videos__card {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .featured-videos__sidebar .featured-videos__card {
        aspect-ratio: 16 / 9;
    }

    .featured-videos__big .featured-videos__play-btn svg {
        width: 60px;
        height: 60px;
    }

    .featured-videos__sidebar .featured-videos__play-btn svg {
        width: 44px;
        height: 44px;
    }

    .featured-videos__big .featured-videos__title {
        font-size: 16px;
    }

    .featured-videos__sidebar .featured-videos__title {
        font-size: 13px;
    }
}

/* Mobile: show post footer (views + date) */
body.is-mobile .post_card_item-information .post_card_item-footer {
    display: flex !important;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 0 3px 5px;
    margin: 0;
}

body.is-mobile .post_card_item-footer .post_card_item-views,
body.is-mobile .post_card_item-footer .post_card_item-publication_date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Desktop Skin Banner */
.skin-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    text-decoration: none;
}

.skin-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

#app {
    position: relative;
    z-index: 1;
}

.skin-banner ~ #app .main {
    position: relative;
}

.skin-banner ~ #app .main .main-wrapper {
    background-color: #fff;
}

.skin-banner ~ #app .header {
    background-color: #000;
}

/* Clickable skin sides */
.skin-banner--left,
.skin-banner--right {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 0;
    cursor: pointer;
}

.skin-banner--left {
    left: 0;
}

.skin-banner--right {
    right: 0;
}
