/* Single News Page Header Styling */

.single-news-page {
    padding-top: 20px;
    padding-bottom: 60px;
}

/* Breadcrumbs (Figma Node: 1:481 for Desktop, 1:1228 for Mobile) */
.news-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DIN Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #8E8E8D;
    /* Grey/500 */
    margin-bottom: 24px;
    /* Spacing between breadcrumbs and title */
}

.news-breadcrumbs a {
    color: #8E8E8D;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.news-breadcrumbs a:hover {
    color: #FFFFFF;
}

.news-breadcrumbs .sep {
    color: #8E8E8D;
}

.news-breadcrumbs .current-item {
    color: #E30613;
    /* Primary/Red */
    font-weight: 700;
    /* Condensed Bold */
    text-transform: uppercase;
}

/* Title Section (Figma Node: 1:509 for Desktop, 1:1237 for Mobile) */
.news-header-title {
    margin-bottom: 40px;
}

.news-title-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-title-divider {
    display: inline-block;
    width: 4px;
    height: 96px;
    background-color: #E30613;
    /* Primary/Red */
    flex-shrink: 0;
}

.news-post-title {
    font-family: 'DD_02', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

/* Image + Text Section (Figma Node: 1:489 Desktop, 1:1251 Mobile) */
.news-section-image-text {
    display: flex;
    gap: 23px;
    align-items: flex-start;

    max-width: 1065px;
    margin: 0 auto;
    margin-top: 40px;
}

.news-sec-image {
    width: 50.3%;
    /* 523px / 1040px roughly */
    flex-shrink: 0;
    position: relative;
}

.news-sec-img-caption {
    position: absolute;
    bottom: -40px;
    left: 24px;
    right: 24px;
    margin: 0;
    padding: 0;
    font-family: 'DD_02', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    z-index: 10;

    transform: rotate(-15deg);
    width: 320px;
}

.news-sec-img-caption span {
    color: #E30613;
}

.news-sec-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.news-sec-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
}

.news-sec-text {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.news-sec-text p {
    margin: 0 0 24px 0;
    padding: 0;
}

.news-sec-text p:last-child {
    margin-bottom: 0;
}

.news-sec-btn-wrapper {
    margin-top: 24px;
}

.news-sec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E30613;
    height: 48px;
    padding: 12px 24px;
    color: #FFFFFF;
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.news-sec-btn:hover {
    background-color: #ba0510;
    color: #FFFFFF;
}

/* Two Column Lists Section (Figma Node: 1:566 Desktop, 1:690 Mobile) */
.news-section-two-columns-lists {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1065px;
    margin: 0 auto;
    margin-top: 40px;
}

.news-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-list-title {
    border-bottom: 1px solid #616160;
    padding-bottom: 12px;
    width: 100%;
}

.news-list-title p {
    font-family: 'DIN Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.news-list-wysiwyg {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.news-list-wysiwyg p {
    margin: 0 0 16px 0;
    padding: 0;
}

.news-list-wysiwyg p:last-child {
    margin-bottom: 0;
}

.news-list-wysiwyg ul {
    list-style: disc;
    margin: 0 0 16px 0;
    padding-left: 30px;
}

.news-list-wysiwyg ul li {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'DIN Pro', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.news-list-wysiwyg ul li::marker {
    color: #FFFFFF;
}

.news-list-wysiwyg ul li:last-child {
    margin-bottom: 0;
}

.news-list-wysiwyg ol {
    list-style: decimal;
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.news-list-wysiwyg ol li {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'DIN Pro', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.news-list-wysiwyg ol li:last-child {
    margin-bottom: 0;
}

/* Image + List/Text Split Section (Figma Nodes: 1:585, 1:607) */
.news-section-image-list {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1065px;
    margin: 0 auto;
    margin-top: 60px;
}

.news-section-image-list.order-image-left .news-image-list-col-img {
    order: 1;
}

.news-section-image-list.order-image-left .news-image-list-col-content {
    order: 2;
}

.news-section-image-list.order-image-right .news-image-list-col-img {
    order: 2;
}

.news-section-image-list.order-image-right .news-image-list-col-content {
    order: 1;
}

.news-image-list-col-img {
    flex: 1;
    height: 480px;
    min-width: 0;
}

.news-image-list-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-image-list-col-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-image-list-title {
    border-bottom: 1px solid #616160;
    padding-bottom: 12px;
    width: 100%;
}

.news-image-list-title p {
    font-family: 'DIN Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.news-image-list-title p span {
    color: #E30613;
}

.news-image-list-wysiwyg {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
}

.news-image-list-wysiwyg p {
    margin: 0 0 16px 0;
    padding: 0;
}

.news-image-list-wysiwyg p:last-child {
    margin-bottom: 0;
}

.news-image-list-wysiwyg p span {
    color: #E30613;
}

/* Ordered lists styling (Figma Node: 1:591) */
.news-image-list-wysiwyg ol {
    list-style: none;
    counter-reset: news-ils-ol-counter;
    margin: 0 0 24px 0;
    padding: 0;
}

.news-image-list-wysiwyg ol:last-child {
    margin-bottom: 0;
}

.news-image-list-wysiwyg ol li {
    counter-increment: news-ils-ol-counter;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px solid #343432;
    padding-bottom: 8px;
    margin-bottom: 24px;
}

.news-image-list-wysiwyg ol li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-image-list-wysiwyg ol li::before {
    content: counter(news-ils-ol-counter, decimal-leading-zero) ".";
    font-family: 'DIN Pro', sans-serif;
    font-weight: 500;
    color: #E30613;
    flex-shrink: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Unordered lists styling (Figma Node: 1:611) */
.news-image-list-wysiwyg ul {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    padding-left: 10px;
}

.news-image-list-wysiwyg ul:last-child {
    margin-bottom: 0;
}

.news-image-list-wysiwyg ul li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.news-image-list-wysiwyg ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-image-list-wysiwyg ul li::before {
    content: "•";
    color: #E30613;
    font-family: 'DIN Pro', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    margin-top: -2px;
    flex-shrink: 0;
    display: inline-block;
    width: 12px;
    text-align: center;
}

/* Video Section (Figma Nodes: 1:627) */
.news-section-video {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    max-width: 1065px;
    margin: 0 auto;
    margin-top: 60px;
}

.news-video-header {
    max-width: 773px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.news-video-title {
    font-family: 'DD_02', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    text-transform: none;
}

.news-video-title span {
    color: #E30613;
}

.news-video-subtitle {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-stretch: condensed;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    text-align: center;
}

.news-video-player-wrapper {
    width: 100%;
    height: 620px;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.news-video-player-wrapper iframe,
.news-video-player-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.news-video-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.news-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    transition: transform 0.2s ease-in-out;
}

.news-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.news-video-play-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Carousel Section (Figma Nodes: 1:635) */
.news-section-carousel {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.news-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.news-carousel-text {
    max-width: 718px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.news-carousel-title {
    font-family: 'DD_02', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.news-carousel-title span {
    color: #E30613;
}

.news-carousel-subtitle {
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-stretch: condensed;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.news-carousel-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-carousel-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.news-carousel-btn:hover:not(.is-disabled) {
    transform: scale(1.05);
}

.news-carousel-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

.news-carousel-btn.is-disabled {
    opacity: 0.16;
    cursor: default;
    pointer-events: none;
}

.news-carousel-wrapper {
    max-width: 1025px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.news-carousel-grid {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    max-width: 1025px;
    width: 100%;
    margin: 0 auto;
}

.news-carousel-card {
    width: 305px;
    height: 456px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 32px;
    /* For flickity cell layout */
}

.news-carousel-grid .news-carousel-card {
    margin-right: 0;
    /* Override margin-right for grid */
}

.news-carousel-card-img {
    flex: 1;
    position: relative;
    background: #1a1a1a;
}

.news-carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.news-carousel-card-info {
    width: 100%;
}

.news-carousel-card-text {
    width: 100%;
}

.news-carousel-card-title {
    font-family: 'DIN Pro', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-stretch: condensed;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-carousel-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #E30613;
    height: 48px;
    padding: 12px 24px;
    color: #FFFFFF;
    font-family: 'DIN Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    width: fit-content;
}

.news-carousel-card-btn:hover {
    background-color: #ba0510;
}


/* Responsive Styling (Mobile: 1:1217) */
@media (max-width: 767px) {
    .single-news-page {
        padding-top: 0px;
        padding-bottom: 40px;
    }

    .news-breadcrumbs {
        gap: 4px;
        font-size: 14px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        /* Prevent overflow on small screens */
    }

    .news-breadcrumbs .current-item {
        font-weight: 500;
        /* Condensed Medium */
    }

    .news-title-divider {
        height: 72px;
        /* Balanced height for smaller title font */
    }

    .news-post-title {
        font-size: 32px;
    }

    /* Mobile Split Section Adjustments (Figma Node: 1:1251) */
    .news-section-image-text {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .news-sec-image {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
        flex-shrink: 1;
    }

    .news-sec-image img {
        height: 250px;
    }

    .news-sec-img-caption {
        position: static;
        margin-top: 16px;
        font-size: 24px;
        padding: 0 15px;
        margin-left: calc(50vw - 50%);
        margin-right: calc(50vw - 50%);
        box-sizing: border-box;

        transform: unset;
        width: auto;
        bottom: unset;
    }


    .news-title-inner {
        align-items: flex-start;
    }

    .news-sec-text p {
        margin: 0 0 16px 0;
        padding: 0;
    }

    .news-sec-content {
        width: 100%;
        align-self: auto;
    }

    .news-sec-btn-wrapper {
        margin-top: 16px;
        width: 100%;
    }

    .news-sec-btn {
        width: 100%;
    }

    /* Mobile Two Column Lists Section Adjustments (Figma Node: 1:690) */
    .news-section-two-columns-lists {
        flex-direction: column;
        gap: 32px;
        margin-top: 30px;
    }

    .news-list-col {
        width: 100%;
    }

    /* Mobile Image + List/Text Split Section (Figma Node: 1:709) */
    .news-section-image-list {
        flex-direction: column;
        gap: 16px;
        margin-top: 48px;
    }

    .news-section-image-list.order-image-left .news-image-list-col-img,
    .news-section-image-list.order-image-right .news-image-list-col-img {
        order: 1;
    }

    .news-section-image-list.order-image-left .news-image-list-col-content,
    .news-section-image-list.order-image-right .news-image-list-col-content {
        order: 2;
        width: 100%;
    }

    .news-image-list-col-img {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
        height: 250px;
    }

    .news-image-list-col-img img {
        height: 250px;
    }

    .news-image-list-col-content {
        gap: 24px;
    }

    .news-image-list-wysiwyg ul {
        padding: 0;
        padding-left: 10px;
    }

    /* Mobile Video Section (Figma Node: 1:751) */
    .news-section-video {
        gap: 16px;
        margin-top: 48px;
    }

    .news-video-header {
        max-width: 343px;
    }

    .news-video-title {
        font-size: 24px;
        text-transform: uppercase;
    }

    .news-video-subtitle {
        font-size: 20px;
    }

    .news-video-player-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
        height: 320px;
    }

    .news-video-play-btn {
        width: 80px;
        height: 80px;
    }

    /* Mobile Carousel Section (Figma Node: 1:758) */
    .news-section-carousel {
        margin-top: 48px;
        padding: 0;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .news-carousel-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
        width: 100%;
    }

    .news-carousel-text {
        max-width: 343px;
        align-items: center;
    }

    .news-carousel-title {
        font-size: 24px;
        text-transform: uppercase;
    }

    .news-carousel-subtitle {
        font-size: 20px;
    }

    .news-carousel-nav {
        width: 343px;
        justify-content: flex-end;
    }

    .news-carousel-wrapper {
        width: 100vw;
        max-width: 100vw;
        overflow: visible;
    }

    .news-carousel-grid {
        width: 100vw;
        max-width: 100vw;
        overflow-x: auto;
        box-sizing: border-box;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .news-carousel-card {
        width: 305px;
        margin-right: 16px;
    }

    .news-carousel-card-btn {
        width: 100%;
    }
}