/* =========================================================
   NEWS: COMMON
========================================================= */

.news-page,
.single-news {
    padding: 16px 0 0px;
    overflow: hidden;
    color: var(--color-text);
}

.news-page *,
.single-news * {
    box-sizing: border-box;
}

.news-page img,
.single-news img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   BREADCRUMBS
========================================================= */

.news-breadcrumbs,
.single-news__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 18px;
    color: rgba(44, 44, 44, 0.48);
    font-size: 12px;
    line-height: 1.4;
}

.news-breadcrumbs a,
.single-news__breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-breadcrumbs a:hover,
.single-news__breadcrumbs a:hover {
    color: var(--color-accent);
}

.single-news__breadcrumbs span:last-child {
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   NEWS HERO
========================================================= */

.news-hero__frame {
    overflow: hidden;
    border-radius: var(--border-radius);
    color: #ffffff;
    background: var(--color-accent);
}

.news-hero__container {
    display: grid;
    min-height: 510px;
    grid-template-columns: minmax(0, 1fr) 510px;
    align-items: stretch;
    gap: 28px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.news-hero--no-image .news-hero__container {
    min-height: 410px;
    grid-template-columns: minmax(0, 1fr);
}

.news-hero__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 42px 0;
    color: #ffffff;
}

.news-hero--no-image .news-hero__content {
    max-width: 820px;
}

.news-hero__title {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(48px, 5.4vw, 72px);
    line-height: 0.97;
    font-weight: 250;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.news-hero__text {
    margin: 22px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

.news-hero__media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.08);
    isolation: isolate;
}

.news-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-hero__image--mono {
    position: relative;
    z-index: 1;
    filter: grayscale(1);
}

.news-hero__image--color {
    position: absolute;
    z-index: 2;
    inset: 0;
    filter: grayscale(0);

    -webkit-clip-path: polygon(-12% -12%, -12% -12%, -12% -12%);
    clip-path: polygon(-12% -12%, -12% -12%, -12% -12%);

    transition:
        -webkit-clip-path 1.65s linear,
        clip-path 1.65s linear;

    will-change: clip-path;
}

.news-hero__media::after {
    position: absolute;
    z-index: 3;
    inset: -45%;
    opacity: 0;
    pointer-events: none;
    background:
        linear-gradient(
            135deg,
            transparent 43%,
            rgba(255, 255, 255, 0.16) 49%,
            rgba(255, 255, 255, 0.26) 50%,
            rgba(255, 255, 255, 0.16) 51%,
            transparent 57%
        );
    transform: translate(-42%, -42%);
    content: "";
}

@media (hover: hover) and (pointer: fine) {
    .news-hero__media:hover .news-hero__image--color {
        -webkit-clip-path: polygon(-12% -12%, 212% -12%, -12% 212%);
        clip-path: polygon(-12% -12%, 212% -12%, -12% 212%);
    }

    .news-hero__media:hover::after {
        animation: newsHeroColorSweep 1.65s linear forwards;
    }
}

@keyframes newsHeroColorSweep {
    0% {
        opacity: 0;
        transform: translate(-42%, -42%);
    }

    12% {
        opacity: 1;
    }

    82% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(42%, 42%);
    }
}

@media (hover: none) {
    .news-hero__image--color {
        display: block;
    }

    .news-hero__media.is-color-revealed .news-hero__image--color {
        -webkit-clip-path: polygon(-12% -12%, 212% -12%, -12% 212%);
        clip-path: polygon(-12% -12%, 212% -12%, -12% 212%);
    }

    .news-hero__media.is-color-revealed::after {
        animation: newsHeroColorSweep 1.65s linear forwards;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-hero__image--color {
        transition: none;
    }

    .news-hero__media::after {
        display: none;
    }
}


/* =========================================================
   NEWS LISTING
========================================================= */

.news-listing {
    padding-top: 88px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 22px;
}


/* =========================================================
   NEWS CARD
========================================================= */

.news-card {
    display: block;
    min-width: 0;
    color: var(--color-text);
    background: transparent;
}

.news-card:hover {
    transform: none;
}


/* =========================================================
   NEWS CARD IMAGE
========================================================= */

.news-card__media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 388 / 292;
    border-radius: var(--border-radius);
    color: inherit;
    background: rgba(44, 44, 44, 0.05);
    text-decoration: none;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transform: scale(1);
    transition:
        filter 0.45s ease,
        transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.news-card__media:hover .news-card__image {
    filter: grayscale(0.2);
    transform: scale(1.04);
}

.news-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: rgba(146, 70, 45, 0.46);
    background:
        linear-gradient(
            145deg,
            rgba(146, 70, 45, 0.08),
            rgba(44, 44, 44, 0.045)
        );
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
}

.news-card__category {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 28px);
    padding: 7px 12px;
    border-radius: 100px;
    color: #ffffff;
    background: rgba(44, 44, 44, 0.42);
    backdrop-filter: blur(10px);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* =========================================================
   NEWS CARD CONTENT
========================================================= */

.news-card__content {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 24px;
    row-gap: 18px;
    padding: 20px 0 0;
}

.news-card__date {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    display: block;
    margin: 0;
    color: rgba(44, 44, 44, 1);
    font-family: var(--font-main);
    font-size: 12px;
    line-height: 22.4px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.news-card__title {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    color: var(--color-text);
    font-size: 14px;
    line-height: 121%;
    font-weight: 500;
    letter-spacing: -1%;
    text-transform: uppercase;
}

.news-card__title a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card__title a:hover {
    color: var(--color-accent);
}

.news-card__excerpt {
	grid-column: 1 / -1;
    grid-row: 2;
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(44, 44, 44, 0.52);
    font-size: 16px;
    line-height: 154%;
    font-weight: 400;
    letter-spacing: -0.8%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* =========================================================
   NEWS CARD ACTION
========================================================= */

.news-card__action,
.news-card__more {
    display: none;
}


/* =========================================================
   PAGINATION
========================================================= */

.news-pagination {
    margin-top: 72px;
}

.news-pagination .navigation {
    margin: 0;
}

.news-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.news-pagination .page-numbers {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(44, 44, 44, 0.12);
    border-radius: var(--border-radius);
    color: var(--color-text);
    background: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.news-pagination .page-numbers.current,
.news-pagination a.page-numbers:hover {
    border-color: var(--color-accent);
    color: #ffffff;
    background: var(--color-accent);
}


/* =========================================================
   EMPTY STATE
========================================================= */

.news-empty {
    padding: 80px 24px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
}

.news-empty h2 {
    margin: 0;
    color: var(--color-accent);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.news-empty p {
    margin: 14px 0 0;
    color: rgba(44, 44, 44, 0.62);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   SINGLE NEWS HEADER
========================================================= */

.single-news__header {
    padding: 50px 0 20px;
}

.single-news__header-inner {
    max-width: 1020px;
}

.single-news__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 24px;
}

.single-news__category {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 100px;
    color: #ffffff;
    background: var(--color-accent);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.single-news__date {
    color: rgba(44, 44, 44, 0.48);
    font-size: 12px;
    line-height: 1.3;
}

.single-news__title {
    max-width: 1050px;
    margin: 0;
    color: var(--color-text);
    font-size: 52px;
    line-height: 1.02;
    font-weight: 250;
    letter-spacing: -0.045em;
}

.single-news__lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(44, 44, 44, 0.65);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================================================
   SINGLE NEWS FEATURED IMAGE
========================================================= */

.single-news__featured {
    position: relative;
}

.single-news__featured-media {
    position: relative;
    width: 100%;
    height: clamp(420px, 68svh, 680px);
    overflow: hidden;
    border-radius: var(--border-radius);
    background: rgba(44, 44, 44, 0.05);
}

.single-news__featured-image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 132%;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* =========================================================
   ARTICLE CONTENT
========================================================= */

.single-news__body {
    padding-top: 70px;
}

.single-news__content {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    color: rgba(44, 44, 44, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

.single-news__content > *:first-child {
    margin-top: 0;
}

.single-news__content > *:last-child {
    margin-bottom: 0;
}

.single-news__content p {
    margin: 0 0 26px;
}

.single-news__content h2,
.single-news__content h3,
.single-news__content h4,
.single-news__content h5,
.single-news__content h6 {
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: -0.035em;
}

.single-news__content h2 {
    margin: 58px 0 24px;
    font-size: 32px;
    line-height: 1.1;
}

.single-news__content h3 {
    margin: 44px 0 20px;
    font-size: 30px;
    line-height: 1.18;
}

.single-news__content h4 {
    margin: 34px 0 16px;
    font-size: 22px;
    line-height: 1.25;
}

.single-news__content h5,
.single-news__content h6 {
    margin: 28px 0 14px;
    font-size: 18px;
    line-height: 1.3;
}

.single-news__content ul,
.single-news__content ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.single-news__content li + li {
    margin-top: 10px;
}

.single-news__content a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.single-news__content strong {
    color: var(--color-text);
    font-weight: 650;
}

.single-news__content blockquote {
    margin: 42px 0;
    padding: 30px 34px;
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--color-text);
    background: rgba(146, 70, 45, 0.06);
    font-size: 21px;
    line-height: 1.5;
}

.single-news__content blockquote > *:first-child {
    margin-top: 0;
}

.single-news__content blockquote > *:last-child {
    margin-bottom: 0;
}

.single-news__content figure {
    margin: 46px 0;
}

.single-news__content figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
}

.single-news__content > img {
    display: block;
    width: 100%;
    height: auto;
    margin: 46px auto;
    border-radius: var(--border-radius);
}


/* =========================================================
   SINGLE NEWS CONTENT — PARALLAX IMAGES
========================================================= */

.single-news__content .wp-block-image {
    width: 100%;
    margin: 56px 0;
}

.single-news__content .wp-block-image figure {
    width: 100%;
    max-width: none;
    margin: 0;
}

.single-news__content .wp-block-image.aligncenter,
.single-news__content .wp-block-image .aligncenter {
    margin-right: auto;
    margin-left: auto;
}

.single-news__parallax-frame {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(380px, 58svh, 620px);
    overflow: hidden;
    border-radius: var(--border-radius);
    background: rgba(44, 44, 44, 0.05);
}

.single-news__content > .single-news__parallax-frame {
    margin: 56px auto;
}

.single-news__content figure .single-news__parallax-frame {
    margin: 0;
}

.single-news__parallax-frame a,
.single-news__parallax-frame picture {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}

.single-news__parallax-frame img.single-news__parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 155% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center top;
    transform: translate3d(0, var(--single-news-parallax-y, 0px), 0);
    will-change: transform;
}

/* =========================================================
   ARTICLE CONTENT ELEMENTS
========================================================= */

.single-news__content figcaption {
    margin-top: 10px;
    color: rgba(44, 44, 44, 0.5);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.single-news__content hr {
    height: 1px;
    margin: 48px 0;
    border: 0;
    background: rgba(44, 44, 44, 0.12);
}

.single-news__content table {
    width: 100%;
    margin: 34px 0;
    border-collapse: collapse;
}

.single-news__content th,
.single-news__content td {
    padding: 14px 16px;
    border: 1px solid rgba(44, 44, 44, 0.12);
    text-align: left;
    vertical-align: top;
}

.single-news__content th {
    color: var(--color-text);
    background: rgba(146, 70, 45, 0.06);
    font-weight: 600;
}

.single-news__content pre {
    max-width: 100%;
    margin: 32px 0;
    padding: 20px;
    overflow: auto;
    border-radius: var(--border-radius);
    background: rgba(44, 44, 44, 0.06);
    font-size: 14px;
    line-height: 1.6;
}

.single-news__content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 38px auto;
    border: 0;
    border-radius: var(--border-radius);
}


/* =========================================================
   TAGS
========================================================= */

.single-news__tags {
    display: flex;
    width: 100%;
    max-width: 820px;
    align-items: flex-start;
    gap: 16px;
    margin: 55px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.single-news__tags-label {
    flex: 0 0 auto;
    padding-top: 6px;
    color: rgba(44, 44, 44, 0.48);
    font-size: 12px;
}

.single-news__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.single-news__tags-list span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 100px;
    color: rgba(44, 44, 44, 0.68);
    font-size: 11px;
    line-height: 1.2;
}


/* =========================================================
   BACK LINK
========================================================= */

.single-news__back {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px 0 0;
    padding: 11px 20px;
    border: 1px solid rgba(234, 234, 234, 1);
    border-radius: var(--border-radius);
    color: var(--color-text);
    background: var(--color-background);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.single-news__body .container > .single-news__back {
    position: relative;
    left: 50%;
    width: 100%;
    max-width: 820px;
    transform: translateX(-50%);
}

.single-news__back:hover {
    color: rgba(146, 70, 45, 1);
    background: rgba(247, 208, 108, 1);
    border-color: rgba(247, 208, 108, 1);
}


/* =========================================================
   RELATED NEWS
========================================================= */

.single-news-related {
    padding-top: 120px;
}

.single-news-related__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 38px;
}

.single-news-related__title {
    margin: 0;
    color: var(--color-accent);
    font-size: 64px;
    line-height: 0.98;
    font-weight: 250;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.single-news-related__all {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid rgba(234, 234, 234, 1);
    border-radius: var(--border-radius);
    color: var(--color-text);
    background: var(--color-background);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.single-news-related__all:hover {
    color: rgba(146, 70, 45, 1);
    background: rgba(247, 208, 108, 1);
    border-color: rgba(247, 208, 108, 1);
}

.single-news-related .news-grid {
    gap: 16px;
}


/* =========================================================
   RESPONSIVE: SMALL DESKTOP
========================================================= */

@media (max-width: 1240px) {
    .news-hero__container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(420px, 48%);
    }

    .single-news__title {
        font-size: clamp(48px, 5.4vw, 64px);
    }

    .single-news-related__title {
        font-size: clamp(46px, 5vw, 64px);
    }
    
    .news-grid {
    gap: 48px 20px;
	}

	.news-card__title {
    font-size: 22px;
	}

}


/* =========================================================
   RESPONSIVE: TABLET
========================================================= */


@media (max-width: 991px) {
	.news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 20px;
	}
	
    .news-hero__container {
        min-height: 480px;
        grid-template-columns: minmax(0, 1fr) 44%;
        gap: 22px;
    }

    .news-hero__content {
        padding: 34px 0;
    }

    .news-hero__text {
        font-size: 15px;
    }

    .news-listing {
        padding-top: 72px;
    }

    .single-news-related {
        padding-top: 80px;
    }
}


/* =========================================================
   RESPONSIVE: MOBILE
========================================================= */

@media (max-width: 767px) {
    .news-page,
    .single-news {
        padding-top: 14px;
    }

    .news-breadcrumbs,
    .single-news__breadcrumbs {
        margin-bottom: 18px;
    }

    .single-news__breadcrumbs span:last-child {
        max-width: 220px;
    }

	.news-hero__frame {
    border-radius: 16px;
}

.news-hero__container {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 42px;
}

.news-hero__content {
    padding: 24px 0 0;
}

.news-hero__title {
    font-size: 40px;
    line-height: 0.98;
}

.news-hero__text {
    max-width: none;
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
}

.news-hero__media {
    min-height: 320px;
}

.news-listing {
    padding-top: 58px;
}

	.news-grid {
    grid-template-columns: 1fr;
    gap: 42px;
}

.news-card__media {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
}

.news-card__content {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 18px;
    row-gap: 14px;
    padding-top: 22px;
}

.news-card__date {
    font-size: 12px;
    line-height: 22.4px;
}

.news-card__title {
    font-size: 14px;
    line-height: 1.18;
}

.news-card__excerpt {
    font-size: 14px;
    line-height: 1.48;
}
	
    .news-pagination {
        margin-top: 52px;
    }

    .single-news__header {
        padding: 48px 0 34px;
    }

    .single-news__meta {
        margin-bottom: 18px;
    }

    .single-news__title {
        font-size: 42px;
    }

    .single-news__lead {
        margin-top: 20px;
        font-size: 16px;
    }
    
    .single-news__content .wp-block-image {
    margin: 42px 0;
}

.single-news__parallax-frame {
    height: auto;
    aspect-ratio: 4 / 3;
}

.single-news__parallax-frame img.single-news__parallax-image {
    height: 128% !important;
}

	.single-news__featured-media {
    	aspect-ratio: 16 / 10;
	}

	.single-news__featured-image {
    	height: 122%;
	}

    .single-news__body {
        padding-top: 48px;
    }

    .single-news__content {
        font-size: 16px;
        line-height: 1.7;
    }

    .single-news__content h2 {
        margin-top: 44px;
        font-size: 34px;
    }

    .single-news__content h3 {
        margin-top: 36px;
        font-size: 26px;
    }

    .single-news__content h4 {
        font-size: 21px;
    }

    .single-news__content blockquote {
        margin: 34px 0;
        padding: 24px 22px;
        font-size: 18px;
    }

    .single-news__content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .single-news-related {
        padding-top: 72px;
    }

    .single-news-related__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 28px;
    }

    .single-news-related__title {
        font-size: 42px;
    }

    .single-news-related__all {
        width: 100%;
    }
    
    .single-news__parallax-frame {
        aspect-ratio: 4 / 3;
    }

	.single-news__parallax-frame img.single-news__parallax-image {
    	height: 116% !important;
}

}


/* =========================================================
   RESPONSIVE: SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .news-hero__title,
    .single-news__title,
    .single-news-related__title {
        font-size: 34px;
    }
    
    .news-hero__media {
    min-height: 280px;
	}

	.news-grid {
    gap: 38px;
}

.news-card__content {
    column-gap: 14px;
    row-gap: 12px;
    padding-top: 20px;
}

.news-card__title {
    font-size: 14px;
}

.news-card__date {
    font-size: 12px;
}

.news-card__excerpt {
    font-size: 14px;
}

.news-card__category {
    right: 12px;
    bottom: 12px;
    min-height: 28px;
    padding: 6px 10px;
}
	
    .news-pagination .page-numbers {
        width: 40px;
        height: 40px;
    }
    
    .single-news__content .wp-block-image {
    margin: 36px 0;
}

.single-news__parallax-frame img.single-news__parallax-image {
    height: 122% !important;
}

	.single-news__featured-media {
    	aspect-ratio: 4 / 3;
	}

	.single-news__featured-image {
    	height: 118%;
	}

    .single-news__tags {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .single-news__back {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .news-breadcrumbs a,
    .single-news__breadcrumbs a,
    .news-card,
    .news-card__image,
    .news-card__title a,
    .news-card__more,
    .news-pagination .page-numbers,
    .single-news__back,
    .single-news-related__all {
        transition: none;
    }

    .news-card:hover {
        transform: none;
    }

    .news-card:hover .news-card__image {
        transform: none;
    }
    
    .single-news__featured-media,
.single-news__featured-image,
.single-news__parallax-image {
    transform: none !important;
    transition: none !important;
}

}