* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

body {
    margin: 0;
    padding: 0;
    min-width: 1200px;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.hero-dark {
    position: relative;
    min-height: 760px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.hero-topline {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 56px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.hero-topline__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-menu {
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-menu::before,
.hero-menu::after,
.hero-menu span {
    content: "";
    position: absolute;
    left: 2px;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
}

.hero-menu::before {
    top: 6px;
}

.hero-menu::after {
    top: 16px;
}

.hero-logo {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.hero-logo img {
    max-height: 40px;
    width: auto;
}

.hero-logo span {
    color: #fff;
}

.hero-tabs {
    position: absolute;
    top: 0;
    left: calc(50% - 300px);
    width: 600px;
    height: 56px;
    display: flex;
    justify-content: center;
    gap: 40px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 56px;
}

.hero-tabs a {
    opacity: .55;
    border-bottom: 2px solid transparent;
}

.hero-tabs a.active,
.hero-tabs a:hover {
    opacity: 1;
    border-bottom-color: #fff;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-search input {
    width: 170px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 0;
    padding: 0 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(255,255,255,.55);
}

.hero-search button {
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.hero-search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.hero-main {
    position: relative;
    display: block;
    min-height: 620px;
    color: #fff;
}

.hero-main__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(.8) saturate(.45);
    transform: scale(1.01);
}

.hero-main::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 34%;
    background: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,0));
}

.hero-main::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.92));
}

.hero-main__content {
    position: relative;
    z-index: 5;
    max-width: 1500px;
    margin: 0 auto;
    padding: 132px 30px 180px;
}

.hero-main__text {
    width: 700px;
    margin-left: 0;
}

.hero-main__label {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 6px 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-main h1 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.035em;
    text-shadow: 0 0 5px rgba(0,0,0,.7);
}

.hero-main p {
    max-width: 620px;
    margin: 0 0 26px;
    font-size: 22px;
    line-height: 1.45;
    opacity: .82;
    text-shadow: 0 0 4px rgba(0,0,0,.7);
}

.hero-main time {
    font-size: 15px;
    opacity: .75;
    text-shadow: 0 0 4px rgba(0,0,0,.7);
}

.hero-secondary {
    position: relative;
    z-index: 10;
    max-width: 1500px;
    margin: -130px auto 0;
    padding: 0 30px 90px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.hero-secondary__item {
    display: block;
    color: #fff;
}

.hero-secondary__item:hover h3 {
    text-decoration: underline;
}

.hero-secondary__image {
    position: relative;
    margin-bottom: -25%;
    overflow: hidden;
    background: #222;
}

.hero-secondary__image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1.77;
    background: linear-gradient(180deg, rgba(18,18,18,0), #121212 78%);
}

.hero-secondary__image img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    filter: brightness(.8) saturate(.65);
}

.hero-secondary__body {
    position: relative;
    z-index: 2;
}

.hero-secondary h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 700;
}

.hero-secondary p {
    margin: 0 0 18px;
    max-height: 4.2em;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.4;
    opacity: .5;
}

.hero-secondary time {
    font-size: 13px;
    opacity: .7;
}

.feed-section {
    background: #fff;
    padding: 46px 0 80px;
}

.feed-container {
    max-width: 826px;
    margin: 0 auto;
}

.feed-title {
    margin: 0 0 38px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.025em;
}

.feed-list {
    width: 100%;
}

.feed-item {
    display: block;
    margin-bottom: 32px;
    color: #111;
}

.feed-item:hover h3 {
    text-decoration: underline;
}

.feed-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.feed-item p {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.5;
    color: #a09fad;
}

.feed-item time {
    font-size: 14px;
    line-height: 1.5;
    color: #a09fad;
}

.feed-item--image {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
}

.feed-item--image .feed-item__image {
    background: #eee;
}

.feed-item--image .feed-item__image img {
    width: 100%;
    height: 100%;
    min-height: 112px;
    object-fit: cover;
}

.feed-item--image .feed-item__text {
    padding: 16px 16px 16px 0;
}

.feed-item--image h3 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.special-project {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 56px;
    margin-bottom: 56px;
    background: #fff;
    --width: 826px;
    min-width: calc(max(100vw, 1200px) - 10px);
    width: var(--width);
    margin-left: calc(-1 * max(1200px / 2, 50vw) + var(--width) * .5);
    color: #111;
}

.special-project__image {
    width: 70%;
    background: #eee;
}

.special-project__image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.special-project__text {
    position: absolute;
    right: 0;
    top: 0;
    max-height: 100%;
    width: 500px;
    overflow: hidden;
    background: #fff;
    padding: 25px 54px 81px;
}

.special-project__label {
    display: inline-block;
    margin-bottom: 24px;
    border-radius: 4px;
    background: #212121;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.special-project h3 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.special-project p {
    margin: 0 60px 0 0;
    font-size: 18px;
    line-height: 1.5;
    color: #a09fad;
}

.empty-feed {
    font-size: 18px;
    color: #777;
}

.pagination {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 15px;
}

.pagination a {
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 999px;
}

.pagination a:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

@media (min-width: 1450px) {
    .special-project {
        margin-right: 0;
        margin-left: -312px;
        width: 1450px;
        min-width: auto;
    }
}

@media (max-width: 900px) {
    body {
        min-width: 0;
    }

    .hero-dark {
        min-height: auto;
    }

    .hero-topline {
        position: relative;
        height: auto;
        min-height: 60px;
        padding: 12px 16px;
        background: #111;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-tabs {
        position: static;
        width: auto;
        height: auto;
        line-height: 1;
        gap: 20px;
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .hero-tabs a {
        padding-bottom: 8px;
    }

    .hero-search input {
        display: none;
    }

    .hero-main {
        min-height: 560px;
    }

    .hero-main__content {
        padding: 80px 18px 120px;
    }

    .hero-main__text {
        width: auto;
    }

    .hero-main h1 {
        font-size: 34px;
    }

    .hero-main p {
        font-size: 18px;
    }

    .hero-secondary {
        margin: 0;
        padding: 20px 18px 34px;
        display: grid;
        grid-template-columns: 1fr;
        border-bottom: none;
    }

    .hero-secondary__image {
        margin-bottom: 12px;
    }

    .hero-secondary__image::after {
        display: none;
    }

    .feed-section {
        padding: 34px 18px 60px;
    }

    .feed-container {
        max-width: 100%;
    }

    .feed-title {
        font-size: 30px;
    }

    .feed-item--image {
        grid-template-columns: 1fr;
    }

    .feed-item--image .feed-item__text {
        padding: 16px;
    }

    .special-project {
        min-width: 0;
        width: 100%;
        margin: 40px 0;
    }

    .special-project__image {
        width: 100%;
    }

    .special-project__text {
        position: relative;
        width: 100%;
        padding: 22px 20px 30px;
    }

    .special-project p {
        margin-right: 0;
    }
}

.feed-list,
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-list-card {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-height: 156px;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 14px;
    color: #111111;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.news-list-card:hover {
    transform: translateY(-2px);
    border-color: #cfcfcf;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.news-list-card__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 156px;
    overflow: hidden;
    background: #e8e8e8;
}

.news-list-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 156px;
    object-fit: cover;
}

.news-list-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px 22px 18px 0;
}

.news-list-card__title {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 700;
    color: #111111;
}

.news-list-card__excerpt {
    display: block;
    margin-bottom: 10px;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.48;
    color: #8e95a1;
}

.news-list-card__date {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.news-list-card:not(:has(.news-list-card__image-wrap)) {
    grid-template-columns: 1fr;
    padding-left: 22px;
}

.news-list-card:not(:has(.news-list-card__image-wrap)) .news-list-card__content {
    padding: 20px 22px;
}

.site-footer {
    margin-top: 82px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 34%),
        linear-gradient(135deg, #171717 0%, #242424 52%, #101010 100%);
    color: #ffffff;
}

.site-footer__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 24px;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
    gap: 64px;
    align-items: start;
}

.site-footer__brand {
    max-width: 520px;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-decoration: none;
}

.site-footer__description {
    margin: 0;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__columns {
    display: grid;
    grid-template-columns: 180px minmax(260px, 1fr);
    gap: 42px;
}

.site-footer__heading {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.site-footer__links--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 24px;
}

.site-footer__links a {
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        color 0.18s ease,
        border-color 0.18s ease;
}

.site-footer__links a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.site-footer__bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 900px) {
    .news-list-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-list-card__image-wrap {
        min-height: 220px;
    }

    .news-list-card__image {
        min-height: 220px;
    }

    .news-list-card__content {
        padding: 18px 18px 20px;
    }

    .news-list-card__title {
        font-size: 20px;
    }

    .news-list-card__excerpt {
        font-size: 15px;
    }

    .site-footer__inner {
        width: min(100% - 32px, 1180px);
        padding-top: 38px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__links--grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__logo {
        font-size: 32px;
    }
}

@media (max-width: 560px) {
    .site-footer__links--grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

.special-project,
.special-project__image,
.special-project__text,
.special-project__label {
    all: unset;
    display: none !important;
}

.feed-section {
    background: #ffffff;
    padding: 46px 0 80px;
}

.feed-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.feed-title {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.feed-list,
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-list-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    min-height: 150px;
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 14px;
    color: #111111;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.news-list-card:hover {
    transform: translateY(-2px);
    border-color: #cfcfcf;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.news-list-card__image-wrap {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    overflow: hidden;
    background: #e8e8e8;
}

.news-list-card__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.news-list-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px 24px 18px 0;
}

.news-list-card__title {
    display: block;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 700;
    color: #111111;
}

.news-list-card__excerpt {
    display: block;
    margin-bottom: 10px;
    max-width: 680px;
    font-size: 16px;
    line-height: 1.48;
    color: #8e95a1;
}

.news-list-card__date {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.news-list-card:not(:has(.news-list-card__image-wrap)) {
    grid-template-columns: 1fr;
    padding-left: 24px;
}

.news-list-card:not(:has(.news-list-card__image-wrap)) .news-list-card__content {
    padding: 20px 24px;
}

.hero-main time,
.hero-secondary time,
.news-list-card__date {
    white-space: nowrap;
}


.feed-item,
.feed-item--image {
    display: none !important;
}

@media (max-width: 900px) {
    .feed-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .news-list-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .news-list-card__image-wrap {
        min-height: 220px;
    }

    .news-list-card__image {
        min-height: 220px;
    }

    .news-list-card__content {
        padding: 18px 18px 20px;
    }

    .news-list-card__title {
        font-size: 20px;
    }

    .news-list-card__excerpt {
        font-size: 15px;
    }
}


.inner-page {
    min-height: 100vh;
    background: #ffffff;
}

.inner-topline {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 58px;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid #e4e4e4;
    color: #111111;
}

.inner-topline__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.inner-topline .hero-menu::before,
.inner-topline .hero-menu::after,
.inner-topline .hero-menu span {
    background: #111111;
}

.inner-logo {
    display: flex;
    align-items: center;
    height: 40px;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
}

.inner-logo img {
    max-height: 40px;
    width: auto;
}

.inner-tabs {
    position: absolute;
    top: 0;
    left: calc(50% - 300px);
    width: 600px;
    height: 58px;
    display: flex;
    justify-content: center;
    gap: 40px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 58px;
}

.inner-tabs a {
    opacity: 0.55;
    border-bottom: 2px solid transparent;
    color: #111111;
    text-decoration: none;
}

.inner-tabs a.active,
.inner-tabs a:hover {
    opacity: 1;
    border-bottom-color: #111111;
}

.inner-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-search input {
    width: 170px;
    height: 32px;
    border: 1px solid #dddddd;
    padding: 0 10px;
    background: #ffffff;
    color: #111111;
    outline: none;
}

.inner-search button {
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.inner-search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #111111;
    border-radius: 50%;
}

.inner-search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #111111;
    transform: rotate(45deg);
    transform-origin: left center;
}

.feed-section--inner {
    padding-top: 48px;
}

@media (max-width: 900px) {
    .inner-topline {
        height: auto;
        min-height: 60px;
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .inner-tabs {
        position: static;
        width: auto;
        height: auto;
        line-height: 1;
        gap: 20px;
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .inner-tabs a {
        padding-bottom: 8px;
    }

    .inner-search input {
        display: none;
    }

    .inner-logo {
        font-size: 22px;
    }
}


.hero-menu {
    display: none !important;
}

.hero-topline__left,
.inner-topline__left {
    gap: 0;
}

.hero-tabs--categories,
.inner-tabs--categories {
    width: 760px;
    left: calc(50% - 380px);
    gap: 28px;
    overflow: hidden;
    white-space: nowrap;
}

.hero-tabs--categories a,
.inner-tabs--categories a {
    padding-left: 0;
    padding-right: 0;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.feed-heading-row .feed-title {
    margin-bottom: 0;
}

.feed-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border: 1px solid #dedede;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    transition:
        background-color 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.feed-all-link:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

@media (max-width: 1100px) {
    .hero-tabs--categories,
    .inner-tabs--categories {
        width: 620px;
        left: calc(50% - 310px);
        gap: 20px;
    }

    .hero-tabs--categories a,
    .inner-tabs--categories a {
        max-width: 110px;
    }
}

@media (max-width: 900px) {
    .hero-tabs--categories,
    .inner-tabs--categories {
        position: static;
        width: 100%;
        height: auto;
        line-height: 1;
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 22px;
        padding-bottom: 2px;
    }

    .hero-tabs--categories a,
    .inner-tabs--categories a {
        flex: 0 0 auto;
        max-width: none;
        padding-bottom: 8px;
    }

    .feed-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}


.hero-main__content {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-secondary {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-main__text {
    width: 680px;
}

.hero-topline {
    padding-left: max(45px, calc((100vw - 1200px) / 2)) !important;
    padding-right: max(45px, calc((100vw - 1200px) / 2)) !important;
}

.category-page-head {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e4e4;
}

.category-page-head__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-page-head__title {
    margin-bottom: 12px !important;
}

.category-page-head__description {
    margin: 0;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
    color: #8e95a1;
}

.inner-tabs a.active {
    opacity: 1;
    border-bottom-color: #111111;
}

.feed-container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1240px) {
    .hero-main__content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .hero-secondary {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 900px) {
    .hero-main__content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-secondary {
        padding-left: 18px !important;
        padding-right: 18px !important;
        grid-template-columns: 1fr;
    }

    .hero-main__text {
        width: auto;
    }

    .category-page-head {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .category-page-head__description {
        font-size: 15px;
    }
}


.hero-main__content {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-secondary {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-main__text {
    width: 680px;
}

.hero-topline {
    padding-left: max(45px, calc((100vw - 1200px) / 2)) !important;
    padding-right: max(45px, calc((100vw - 1200px) / 2)) !important;
}


.category-page-head {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e4e4e4;
}

.category-page-head__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: #111111;
    color: #ffffff;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-page-head__title {
    margin-bottom: 12px !important;
}

.category-page-head__description {
    margin: 0;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
    color: #8e95a1;
}

.inner-tabs a.active {
    opacity: 1;
    border-bottom-color: #111111;
}

.feed-container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1240px) {
    .hero-main__content {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .hero-secondary {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media (max-width: 900px) {
    .hero-main__content {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-secondary {
        padding-left: 18px !important;
        padding-right: 18px !important;
        grid-template-columns: 1fr;
    }

    .hero-main__text {
        width: auto;
    }

    .category-page-head {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .category-page-head__description {
        font-size: 15px;
    }
}


.category-page-dark {
    min-height: 100vh;
    background: #ffffff;
}

.category-page-top {
    position: relative;
    min-height: 360px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 32%),
        #111111;
    color: #ffffff;
    overflow: hidden;
}

.category-page-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.28;
    pointer-events: none;
}

.category-page-topline {
    position: relative !important;
    z-index: 10 !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 56px !important;
    padding-left: max(45px, calc((100vw - 1200px) / 2)) !important;
    padding-right: max(45px, calc((100vw - 1200px) / 2)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(0, 0, 0, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
}

.category-page-topline .hero-logo {
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

.category-page-topline .hero-logo span {
    color: #ffffff !important;
}

.category-page-topline .hero-tabs {
    position: absolute !important;
    top: 0 !important;
    left: calc(50% - 380px) !important;
    width: 760px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    line-height: 56px !important;
}

.category-page-topline .hero-tabs a {
    display: inline-flex !important;
    align-items: center !important;
    height: 56px !important;
    max-width: 140px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    opacity: 0.55 !important;
    color: #ffffff !important;
    border-bottom: 2px solid transparent !important;
    text-decoration: none !important;
}

.category-page-topline .hero-tabs a.active,
.category-page-topline .hero-tabs a:hover {
    opacity: 1 !important;
    border-bottom-color: #ffffff !important;
    color: #ffffff !important;
}

.category-page-topline .hero-search {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.category-page-topline .hero-search input {
    width: 170px !important;
    height: 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 0 !important;
    padding: 0 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    outline: none !important;
}

.category-page-topline .hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.category-page-topline .hero-search button {
    width: 22px !important;
    height: 22px !important;
    border: 0 !important;
    background: transparent !important;
    position: relative !important;
    cursor: pointer !important;
}

.category-page-topline .hero-search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.category-page-topline .hero-search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.category-page-top__inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 74px;
}

.category-page-top__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.category-page-top h1 {
    margin: 0 0 16px;
    max-width: 820px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.category-page-top p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.category-page-dark .feed-section--inner {
    padding-top: 46px !important;
}

.category-page-dark .inner-topline,
.category-page-dark .category-page-head,
.category-page-dark .category-header-main {
    display: none !important;
}

@media (max-width: 1100px) {
    .category-page-topline .hero-tabs {
        width: 620px !important;
        left: calc(50% - 310px) !important;
        gap: 20px !important;
    }

    .category-page-topline .hero-tabs a {
        max-width: 110px !important;
    }
}

@media (max-width: 900px) {
    .category-page-topline {
        height: auto !important;
        min-height: 60px !important;
        padding: 12px 16px !important;
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    .category-page-topline .hero-tabs {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        line-height: 1 !important;
        order: 3 !important;
        flex-basis: 100% !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 22px !important;
        padding-bottom: 2px !important;
    }

    .category-page-topline .hero-tabs a {
        flex: 0 0 auto !important;
        max-width: none !important;
        height: auto !important;
        padding-bottom: 8px !important;
    }

    .category-page-topline .hero-search input {
        display: none !important;
    }

    .category-page-top__inner {
        width: min(100% - 32px, 1200px);
        padding: 46px 0 44px;
    }

    .category-page-top h1 {
        font-size: 38px;
    }

    .category-page-top p {
        font-size: 16px;
    }
}


.category-page-dark .feed-container,
.category-page-dark .feed-list {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.category-page-dark .news-list-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.category-page-dark .news-list-card__image-wrap,
.category-page-dark .news-list-card__image {
    min-height: 170px !important;
}

.category-page-dark .news-list-card__content {
    padding: 22px 28px 22px 0 !important;
}

.category-page-dark .news-list-card__title {
    font-size: 23px !important;
    line-height: 1.25 !important;
}

.category-page-dark .news-list-card__excerpt {
    max-width: 780px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

.inner-page .feed-container,
.inner-page .feed-list {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.inner-page .news-list-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.inner-page .news-list-card__image-wrap,
.inner-page .news-list-card__image {
    min-height: 170px !important;
}

.inner-page .news-list-card__content {
    padding: 22px 28px 22px 0 !important;
}

@media (max-width: 1240px) {
    .category-page-dark .feed-container,
    .category-page-dark .feed-list,
    .inner-page .feed-container,
    .inner-page .feed-list {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
    }
}

@media (max-width: 900px) {
    .category-page-dark .feed-container,
    .category-page-dark .feed-list,
    .inner-page .feed-container,
    .inner-page .feed-list {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
    }

    .category-page-dark .news-list-card,
    .inner-page .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .category-page-dark .news-list-card__content,
    .inner-page .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}


.feed-section:not(.feed-section--inner) .feed-container,
.feed-section:not(.feed-section--inner) .feed-list {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.feed-section:not(.feed-section--inner) .news-list-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.feed-section:not(.feed-section--inner) .news-list-card__image-wrap,
.feed-section:not(.feed-section--inner) .news-list-card__image {
    min-height: 170px !important;
}

.feed-section:not(.feed-section--inner) .news-list-card__content {
    padding: 22px 28px 22px 0 !important;
}

.feed-section:not(.feed-section--inner) .news-list-card__title {
    font-size: 23px !important;
    line-height: 1.25 !important;
}

.feed-section:not(.feed-section--inner) .news-list-card__excerpt {
    max-width: 780px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

.feed-section:not(.feed-section--inner) .feed-heading-row {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 1240px) {
    .feed-section:not(.feed-section--inner) .feed-container,
    .feed-section:not(.feed-section--inner) .feed-list,
    .feed-section:not(.feed-section--inner) .feed-heading-row {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
    }
}

@media (max-width: 900px) {
    .feed-section:not(.feed-section--inner) .feed-container,
    .feed-section:not(.feed-section--inner) .feed-list,
    .feed-section:not(.feed-section--inner) .feed-heading-row {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
    }

    .feed-section:not(.feed-section--inner) .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .feed-section:not(.feed-section--inner) .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}


.tape-page-dark {
    min-height: 100vh;
    background: #ffffff;
}

.tape-page-top {
    position: relative;
    min-height: 360px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 32%),
        #111111;
    color: #ffffff;
    overflow: hidden;
}

.tape-page-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.28;
    pointer-events: none;
}

.tape-page-topline {
    position: relative !important;
    z-index: 10 !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 56px !important;
    padding-left: max(45px, calc((100vw - 1200px) / 2)) !important;
    padding-right: max(45px, calc((100vw - 1200px) / 2)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(0, 0, 0, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
}

.tape-page-topline .hero-logo {
    display: flex !important;
    align-items: center !important;
    height: 40px !important;
    font-size: 26px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
}

.tape-page-topline .hero-logo span {
    color: #ffffff !important;
}

.tape-page-topline .hero-tabs {
    position: absolute !important;
    top: 0 !important;
    left: calc(50% - 380px) !important;
    width: 760px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    line-height: 56px !important;
}

.tape-page-topline .hero-tabs a {
    display: inline-flex !important;
    align-items: center !important;
    height: 56px !important;
    max-width: 140px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    opacity: 0.55 !important;
    color: #ffffff !important;
    border-bottom: 2px solid transparent !important;
    text-decoration: none !important;
}

.tape-page-topline .hero-tabs a:hover,
.tape-page-topline .hero-tabs a.active {
    opacity: 1 !important;
    border-bottom-color: #ffffff !important;
    color: #ffffff !important;
}

.tape-page-topline .hero-search {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.tape-page-topline .hero-search input {
    width: 170px !important;
    height: 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 0 !important;
    padding: 0 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    outline: none !important;
}

.tape-page-topline .hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.tape-page-topline .hero-search button {
    width: 22px !important;
    height: 22px !important;
    border: 0 !important;
    background: transparent !important;
    position: relative !important;
    cursor: pointer !important;
}

.tape-page-topline .hero-search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.tape-page-topline .hero-search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.tape-page-top__inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 74px;
}

.tape-page-top__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tape-page-top h1 {
    margin: 0 0 16px;
    max-width: 820px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.tape-page-top p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.tape-page-dark .feed-container,
.tape-page-dark .feed-list {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tape-page-dark .news-list-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.tape-page-dark .news-list-card__image-wrap,
.tape-page-dark .news-list-card__image {
    min-height: 170px !important;
}

.tape-page-dark .news-list-card__content {
    padding: 22px 28px 22px 0 !important;
}

.tape-page-dark .news-list-card__title {
    font-size: 23px !important;
    line-height: 1.25 !important;
}

.tape-page-dark .news-list-card__excerpt {
    max-width: 780px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
}

.tape-page-dark .inner-topline {
    display: none !important;
}

@media (max-width: 1240px) {
    .tape-page-dark .feed-container,
    .tape-page-dark .feed-list {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
    }
}

@media (max-width: 900px) {
    .tape-page-topline {
        height: auto !important;
        min-height: 60px !important;
        padding: 12px 16px !important;
        flex-wrap: wrap !important;
        gap: 14px !important;
    }

    .tape-page-topline .hero-tabs {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        line-height: 1 !important;
        order: 3 !important;
        flex-basis: 100% !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 22px !important;
        padding-bottom: 2px !important;
    }

    .tape-page-topline .hero-tabs a {
        flex: 0 0 auto !important;
        max-width: none !important;
        height: auto !important;
        padding-bottom: 8px !important;
    }

    .tape-page-topline .hero-search input {
        display: none !important;
    }

    .tape-page-top__inner {
        width: min(100% - 32px, 1200px);
        padding: 46px 0 44px;
    }

    .tape-page-top h1 {
        font-size: 38px;
    }

    .tape-page-top p {
        font-size: 16px;
    }

    .tape-page-dark .feed-container,
    .tape-page-dark .feed-list {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
    }

    .tape-page-dark .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .tape-page-dark .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}

.article-page-clean {
    min-height: 100vh;
    background: #ffffff;
    color: #111111;
}

.article-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.article-site-header__inner {
    width: min(1200px, calc(100% - 48px));
    height: 58px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    align-items: center;
    gap: 24px;
}

.article-site-header__logo {
    display: inline-flex;
    align-items: center;
    height: 40px;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.article-site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    height: 58px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 58px;
}

.article-site-header__nav a {
    display: inline-flex;
    align-items: center;
    height: 58px;
    opacity: 0.58;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.article-site-header__nav a:hover {
    opacity: 1;
    border-bottom-color: #ffffff;
}

.article-site-header__search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.article-site-header__search input {
    width: 170px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
}

.article-site-header__search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.article-site-header__search button {
    position: relative;
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.article-site-header__search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.article-site-header__search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.article-layout-clean {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 80px;
    display: grid;
    grid-template-columns: minmax(0, 780px) 320px;
    gap: 80px;
    align-items: start;
}

.article-main-clean {
    min-width: 0;
}

.article-breadcrumbs-clean {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.article-breadcrumbs-clean a {
    color: #8e95a1;
    text-decoration: none;
}

.article-breadcrumbs-clean a:hover {
    color: #111111;
}

.article-header-clean {
    margin-bottom: 30px;
}

.article-date {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.article-title {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111111;
}

.article-lead {
    margin: 0;
    max-width: 720px;
    font-size: 21px;
    line-height: 1.5;
    color: #707782;
}

.article-image {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
}

.article-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.article-image figcaption {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #8e95a1;
    background: #f7f7f7;
}

.article-content {
    font-size: 19px;
    line-height: 1.75;
    color: #222222;
}

.article-content h2,
.article-content h3 {
    margin: 34px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.22;
    color: #111111;
}

.article-content h2 {
    font-size: 30px;
}

.article-content h3 {
    font-size: 24px;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content a {
    color: #111111;
    border-bottom: 1px solid rgba(17, 17, 17, 0.35);
}

.article-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 4px solid #111111;
    background: #f5f5f5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.5;
}

.article-sidebar-clean {
    position: sticky;
    top: 90px;
}

.article-sidebar-box {
    padding: 24px;
    border: 1px solid #dedede;
    border-radius: 18px;
    background: #ffffff;
}

.article-sidebar-box .main-news__title {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.15;
    color: #111111;
}

.main-news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-news-card {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    color: #111111;
    text-decoration: none;
}

.sidebar-news-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.sidebar-news-card__title {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 700;
}

.sidebar-news-card__date {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #8e95a1;
}

.sidebar-news-card:hover .sidebar-news-card__title {
    text-decoration: underline;
}

.article-related {
    margin-top: 54px;
    padding-top: 36px;
    border-top: 1px solid #e4e4e4;
}

.article-related__head {
    margin-bottom: 22px;
}

.article-related__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.2;
    color: #111111;
}

.article-related__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-related__grid .news-list-card {
    grid-template-columns: 220px minmax(0, 1fr) !important;
}

.article-related__grid .news-list-card__image-wrap,
.article-related__grid .news-list-card__image {
    min-height: 145px !important;
}

.article-related__grid .news-list-card__title {
    font-size: 20px !important;
}

@media (max-width: 1240px) {
    .article-layout-clean,
    .article-site-header__inner {
        width: calc(100% - 48px);
    }
}

@media (max-width: 980px) {
    body {
        min-width: 0;
    }

    .article-layout-clean {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .article-sidebar-clean {
        position: static;
    }

    .article-title {
        font-size: 38px;
    }

    .article-lead {
        font-size: 19px;
    }

    .article-content {
        font-size: 18px;
    }

    .article-site-header__inner {
        height: auto;
        min-height: 60px;
        padding: 12px 0;
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .article-site-header__nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        height: auto;
        line-height: 1;
        gap: 24px;
    }

    .article-site-header__nav a {
        height: auto;
        padding-bottom: 8px;
    }

    .article-site-header__search input {
        display: none;
    }
}

@media (max-width: 640px) {
    .article-layout-clean,
    .article-site-header__inner {
        width: calc(100% - 32px);
    }

    .article-layout-clean {
        padding-top: 32px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-lead {
        font-size: 17px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.68;
    }

    .article-image {
        border-radius: 14px;
    }

    .article-related__grid .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .article-related__grid .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    width: 100%;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.site-header__inner {
    width: min(1200px, calc(100% - 48px));
    height: 58px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    align-items: center;
    gap: 24px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    height: 40px;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    height: 58px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 58px;
}

.site-header__nav a {
    display: inline-flex;
    align-items: center;
    height: 58px;
    opacity: 0.55;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.site-header__nav a:hover,
.site-header__nav a.active {
    opacity: 1;
    border-bottom-color: #ffffff;
}

.site-header__search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.site-header__search input {
    width: 170px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
}

.site-header__search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.site-header__search button {
    position: relative;
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header__search button::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.site-header__search button::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    width: 8px;
    height: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}

.hero-topline,
.inner-topline,
.article-site-header,
.category-page-topline,
.tape-page-topline,
.category-header-main {
    display: none !important;
}

.hero-dark--without-inner-header .hero-main__content {
    padding-top: 88px !important;
}

.article-page-clean .article-layout-clean {
    padding-top: 46px !important;
}


.article-page-clean {
    min-height: 100vh;
    background: #ffffff;
    color: #111111;
}

.article-layout-clean {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 80px;
    display: grid;
    grid-template-columns: minmax(0, 780px) 320px;
    gap: 80px;
    align-items: start;
}

.article-main-clean {
    min-width: 0;
}

.article-breadcrumbs-clean {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.article-breadcrumbs-clean a {
    color: #8e95a1;
    text-decoration: none;
}

.article-breadcrumbs-clean a:hover {
    color: #111111;
}

.article-header-clean {
    margin-bottom: 30px;
}

.article-date {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.4;
    color: #8e95a1;
}

.article-title {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111111;
}

.article-lead {
    margin: 0;
    max-width: 720px;
    font-size: 21px;
    line-height: 1.5;
    color: #707782;
}

.article-image {
    margin: 0 0 34px;
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
}

.article-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.article-image figcaption {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #8e95a1;
    background: #f7f7f7;
}

.article-content {
    font-size: 19px;
    line-height: 1.75;
    color: #222222;
}

.article-content h2,
.article-content h3 {
    margin: 34px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.22;
    color: #111111;
}

.article-content h2 {
    font-size: 30px;
}

.article-content h3 {
    font-size: 24px;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content a {
    color: #111111;
    border-bottom: 1px solid rgba(17, 17, 17, 0.35);
}

.article-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 4px solid #111111;
    background: #f5f5f5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.5;
}

.article-sidebar-clean {
    position: sticky;
    top: 90px;
}

.article-sidebar-box {
    padding: 24px;
    border: 1px solid #dedede;
    border-radius: 18px;
    background: #ffffff;
}

.article-sidebar-box .main-news__title {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.15;
    color: #111111;
}

.main-news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-news-card {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    color: #111111;
    text-decoration: none;
}

.sidebar-news-card:first-child {
    border-top: 0;
    padding-top: 0;
}

.sidebar-news-card__title {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.42;
    font-weight: 700;
}

.sidebar-news-card__date {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #8e95a1;
}

.sidebar-news-card:hover .sidebar-news-card__title {
    text-decoration: underline;
}

.article-related {
    margin-top: 54px;
    padding-top: 36px;
    border-top: 1px solid #e4e4e4;
}

.article-related__head {
    margin-bottom: 22px;
}

.article-related__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.2;
    color: #111111;
}

.article-related__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-related__grid .news-list-card {
    grid-template-columns: 220px minmax(0, 1fr) !important;
}

.article-related__grid .news-list-card__image-wrap,
.article-related__grid .news-list-card__image {
    min-height: 145px !important;
}

.article-related__grid .news-list-card__title {
    font-size: 20px !important;
}

@media (max-width: 1240px) {
    .site-header__inner,
    .article-layout-clean {
        width: calc(100% - 48px);
    }
}

@media (max-width: 980px) {
    body {
        min-width: 0;
    }

    .site-header__inner {
        height: auto;
        min-height: 60px;
        padding: 12px 0;
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .site-header__nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        height: auto;
        line-height: 1;
        gap: 24px;
        overflow-x: auto;
    }

    .site-header__nav a {
        height: auto;
        padding-bottom: 8px;
        flex: 0 0 auto;
    }

    .site-header__search input {
        display: none;
    }

    .site-header__logo {
        font-size: 22px;
    }

    .article-layout-clean {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .article-sidebar-clean {
        position: static;
    }

    .article-title {
        font-size: 38px;
    }

    .article-lead {
        font-size: 19px;
    }

    .article-content {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .site-header__inner,
    .article-layout-clean {
        width: calc(100% - 32px);
    }

    .article-layout-clean {
        padding-top: 32px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-lead {
        font-size: 17px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.68;
    }

    .article-image {
        border-radius: 14px;
    }

    .article-related__grid .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .article-related__grid .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}

.site-footer-v3 {
    margin-top: 90px !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    border-top: 1px solid #e5e5e5 !important;
}

.site-footer-v3__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0 26px;
}

.site-footer-v3__top {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    gap: 70px;
    align-items: end;
    padding-bottom: 32px;
    border-bottom: 1px solid #e7e7e7;
}

.site-footer-v3__brand {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #111111;
    text-decoration: none;
}

.site-footer-v3__lead {
    margin: 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.65;
    color: #666666;
}

.site-footer-v3__main {
    display: grid;
    grid-template-columns: 220px 220px minmax(300px, 1fr);
    gap: 56px;
    padding: 32px 0 34px;
    border-bottom: 1px solid #e7e7e7;
}

.site-footer-v3__label {
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9a9a9a;
}

.site-footer-v3__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.site-footer-v3__links a {
    display: inline-block;
    font-size: 16px;
    line-height: 1.35;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.site-footer-v3__links a:hover {
    border-bottom-color: #111111;
}

.site-footer-v3__text p {
    margin: 0;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

.site-footer-v3__bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.4;
    color: #8a8a8a;
}

.site-footer__top,
.site-footer__main,
.site-footer__brand,
.site-footer__columns,
.site-footer__nav-wrap,
.site-footer-v2,
.site-footer-v2__inner,
.site-footer-v2__brand-row,
.site-footer-v2__main,
.site-footer-v2__bottom {
    all: unset;
}

@media (max-width: 900px) {
    .site-footer-v3__inner {
        width: calc(100% - 32px);
        padding: 34px 0 22px;
    }

    .site-footer-v3__top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer-v3__brand {
        font-size: 38px;
    }

    .site-footer-v3__main {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .site-footer-v3__bottom {
        flex-direction: column;
    }
}


.site-header__logo--plain {
    display: inline-flex !important;
    align-items: center !important;
    height: 40px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: none !important;
}

.site-header__logo--plain:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.site-header__logo-main,
.site-header__logo-sub {
    all: unset !important;
}

.site-header__logo--brand,
.site-header__logo--brand:hover,
.site-header__logo--brand:hover .site-header__logo-sub {
    transform: none !important;
    transition: none !important;
    background: transparent !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .site-header__logo--plain {
        font-size: 23px !important;
    }
}


.site-header__logo--plain {
    display: inline-flex !important;
    align-items: center !important;
    height: 40px !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    text-transform: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: none !important;
}

.site-header__logo--plain:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.site-header__logo-main,
.site-header__logo-sub {
    all: unset !important;
}

.site-header__logo--brand,
.site-header__logo--brand:hover,
.site-header__logo--brand:hover .site-header__logo-sub {
    transform: none !important;
    transition: none !important;
    background: transparent !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .site-header__logo--plain {
        font-size: 23px !important;
    }
}

.search-page {
    min-height: 100vh;
    background: #ffffff;
}

.search-hero {
    position: relative;
    min-height: 340px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.9)),
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.13), transparent 32%),
        #111111;
    color: #ffffff;
    overflow: hidden;
}

.search-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.28;
    pointer-events: none;
}

.search-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 62px 0 66px;
}

.search-hero__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-hero h1 {
    margin: 0 0 16px;
    max-width: 820px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.search-hero p {
    margin: 0 0 28px;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}

.search-hero__form {
    display: grid;
    grid-template-columns: minmax(0, 520px) 130px;
    gap: 12px;
    max-width: 670px;
}

.search-hero__form input {
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    font-size: 16px;
}

.search-hero__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-hero__form button {
    height: 48px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.search-hero__form button:hover {
    background: transparent;
    color: #ffffff;
}

.feed-section--search .feed-container,
.feed-section--search .feed-list,
.feed-section--search .feed-heading-row {
    width: 1200px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.feed-section--search .news-list-card {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
}

.feed-section--search .news-list-card__image-wrap,
.feed-section--search .news-list-card__image {
    min-height: 170px !important;
}

.feed-section--search .news-list-card__content {
    padding: 22px 28px 22px 0 !important;
}

.search-empty {
    padding: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #fafafa;
}

.search-empty h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #111111;
}

.search-empty p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #777777;
}

.search-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1240px) {
    .feed-section--search .feed-container,
    .feed-section--search .feed-list,
    .feed-section--search .feed-heading-row {
        width: calc(100% - 48px) !important;
        max-width: calc(100% - 48px) !important;
    }
}

@media (max-width: 900px) {
    .search-hero__inner {
        width: calc(100% - 32px);
        padding: 44px 0 48px;
    }

    .search-hero h1 {
        font-size: 38px;
    }

    .search-hero p {
        font-size: 16px;
    }

    .search-hero__form {
        grid-template-columns: 1fr;
    }

    .feed-section--search .feed-container,
    .feed-section--search .feed-list,
    .feed-section--search .feed-heading-row {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
    }

    .feed-section--search .news-list-card {
        grid-template-columns: 1fr !important;
    }

    .feed-section--search .news-list-card__content {
        padding: 18px 18px 20px !important;
    }
}


.site-header__logo--editorial {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 2px !important;
    height: 46px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: none !important;
}

.site-header__logo-small {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.site-header__logo-large {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-header__logo--editorial:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.site-header__logo--editorial:hover .site-header__logo-small,
.site-header__logo--editorial:hover .site-header__logo-large {
    color: inherit;
    transform: none !important;
}

.site-header__logo--brand,
.site-header__logo--plain,
.site-header__logo-main,
.site-header__logo-sub {
    transition: none !important;
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .site-header__logo-large {
        font-size: 22px;
    }

    .site-header__logo-small {
        font-size: 9px;
        letter-spacing: 0.24em;
    }
}

.site-footer-v4 {
    margin-top: 90px !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #111111 !important;
    border-top: 1px solid #e5e5e5 !important;
}

.site-footer-v4__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 44px 0 38px;
}

.site-footer-v4__top {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: 70px;
    align-items: center;
}

.site-footer-v4__brand {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #111111;
    text-decoration: none;
}

.site-footer-v4__lead {
    margin: 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.65;
    color: #666666;
}

.site-footer-v3__main,
.site-footer-v3__bottom,
.site-footer-v2__main,
.site-footer-v2__bottom,
.site-footer__main,
.site-footer__bottom,
.site-footer__columns,
.site-footer__links {
    display: none !important;
}

@media (max-width: 900px) {
    .site-footer-v4__inner {
        width: calc(100% - 32px);
        padding: 34px 0 30px;
    }

    .site-footer-v4__top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer-v4__brand {
        font-size: 38px;
    }

    .site-footer-v4__lead {
        font-size: 15px;
    }
}

.error-page {
    min-height: calc(100vh - 58px);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-page__inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

.error-page__code {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 150px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: #111111;
}

.error-page__content {
    max-width: 650px;
}

.error-page__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 7px 13px;
    border: 1px solid #111111;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111111;
}

.error-page h1 {
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 54px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #111111;
}

.error-page p {
    margin: 0;
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
    color: #666666;
}

.error-page__actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.error-page__button:hover {
    border-color: #111111;
}

.error-page__button--dark {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.error-page__button--dark:hover {
    background: #ffffff;
    color: #111111;
}

@media (max-width: 900px) {
    .error-page {
        min-height: auto;
        padding: 56px 0;
    }

    .error-page__inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .error-page__code {
        font-size: 100px;
    }

    .error-page h1 {
        font-size: 38px;
    }

    .error-page p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    html,
    body {
        width: 100%;
        min-width: 0 !important;
        overflow-x: hidden;
    }

    .site {
        width: 100%;
        min-width: 0 !important;
        overflow-x: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 500;
    }

    .site-header__inner {
        width: calc(100% - 32px) !important;
        height: auto !important;
        min-height: 58px;
        padding: 10px 0;
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
    }

    .site-header__logo--editorial {
        height: auto !important;
    }

    .site-header__logo-small {
        font-size: 8px !important;
        letter-spacing: 0.24em !important;
    }

    .site-header__logo-large {
        font-size: 21px !important;
        line-height: 0.95 !important;
    }

    .site-header__nav {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
        height: auto !important;
        display: flex !important;
        justify-content: flex-start !important;
        gap: 22px !important;
        overflow-x: auto;
        padding-top: 6px;
        line-height: 1 !important;
        scrollbar-width: none;
    }

    .site-header__nav::-webkit-scrollbar {
        display: none;
    }

    .site-header__nav a {
        height: auto !important;
        padding: 0 0 8px !important;
        flex: 0 0 auto;
        font-size: 12px !important;
        line-height: 1 !important;
    }

    .site-header__search {
        justify-content: flex-end !important;
    }

    .site-header__search input {
        display: none !important;
    }

    .site-header__search button {
        width: 24px !important;
        height: 24px !important;
    }

    .hero-dark {
        min-height: auto !important;
        padding-bottom: 34px !important;
    }

    .hero-main {
        min-height: 520px !important;
        display: block !important;
    }

    .hero-main__image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-main__content {
        width: calc(100% - 32px) !important;
        min-height: 520px !important;
        margin: 0 auto !important;
        padding-top: 74px !important;
        padding-bottom: 30px !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    .hero-main__text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-main__text h1 {
        max-width: 100% !important;
        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.055em !important;
        margin-bottom: 16px !important;
    }

    .hero-main__text p {
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }

    .hero-main__text time {
        font-size: 13px !important;
    }

    .hero-secondary {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        margin: 22px auto 0 !important;
        display: flex !important;
        gap: 14px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        scrollbar-width: none;
    }

    .hero-secondary::-webkit-scrollbar {
        display: none;
    }

    .hero-secondary__item {
        flex: 0 0 235px !important;
        width: 235px !important;
        min-width: 235px !important;
    }

    .hero-secondary__image {
        height: 118px !important;
        margin-bottom: 10px !important;
    }

    .hero-secondary__image img {
        width: 100% !important;
        height: 118px !important;
        object-fit: cover !important;
    }

    .hero-secondary__body h3 {
        font-size: 16px !important;
        line-height: 1.28 !important;
    }

    .hero-secondary__body p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .hero-secondary__body time {
        font-size: 12px !important;
    }

    .feed-section {
        padding: 38px 0 48px !important;
    }

    .feed-container {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

    .feed-heading-row {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }

    .feed-title {
        font-size: 31px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.05em !important;
    }

    .feed-all-link {
        height: 36px !important;
        padding: 0 15px !important;
        font-size: 12px !important;
        white-space: nowrap;
    }

    .feed-list {
        width: 100% !important;
        max-width: none !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .news-list-card {
        width: 100% !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr) !important;
        gap: 0 !important;
        min-height: 112px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    .news-list-card__image-wrap {
        width: 112px !important;
        min-height: 112px !important;
        height: 100% !important;
    }

    .news-list-card__image {
        width: 112px !important;
        height: 100% !important;
        min-height: 112px !important;
        object-fit: cover !important;
    }

    .news-list-card__content {
        padding: 13px 14px !important;
        min-width: 0 !important;
    }

    .news-list-card__title {
        font-size: 15px !important;
        line-height: 1.28 !important;
        margin-bottom: 7px !important;
    }

    .news-list-card__excerpt {
        font-size: 13px !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px !important;
    }

    .news-list-card__date {
        font-size: 12px !important;
    }

    .pagination {
        margin-top: 28px !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .pagination a,
    .pagination span {
        height: 36px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
    }

    .article-layout-clean {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        padding: 30px 0 56px !important;
        display: block !important;
    }

    .article-main-clean {
        width: 100% !important;
        max-width: none !important;
    }

    .article-sidebar-clean {
        display: none !important;
    }

    .article-breadcrumbs-clean {
        margin-bottom: 18px !important;
        font-size: 13px !important;
        overflow-x: auto;
        white-space: nowrap;
    }

    .article-title {
        font-size: 33px !important;
        line-height: 1.08 !important;
        letter-spacing: -0.055em !important;
        margin-bottom: 16px !important;
    }

    .article-lead {
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    .article-image {
        border-radius: 14px !important;
        margin-bottom: 26px !important;
    }

    .article-image img {
        max-height: none !important;
        height: auto !important;
    }

    .article-content {
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    .article-content h2 {
        font-size: 25px !important;
        line-height: 1.18 !important;
    }

    .article-content h3 {
        font-size: 21px !important;
        line-height: 1.22 !important;
    }

    .article-related {
        margin-top: 38px !important;
        padding-top: 28px !important;
    }

    .article-related__head h2 {
        font-size: 28px !important;
    }

    .article-related__grid .news-list-card {
        grid-template-columns: 112px minmax(0, 1fr) !important;
    }

    .article-related__grid .news-list-card__image-wrap,
    .article-related__grid .news-list-card__image {
        width: 112px !important;
        min-height: 112px !important;
    }

    .article-related__grid .news-list-card__title {
        font-size: 15px !important;
    }

    .search-hero {
        min-height: auto !important;
    }

    .search-hero__inner {
        width: calc(100% - 32px) !important;
        padding: 42px 0 46px !important;
    }

    .search-hero h1 {
        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .search-hero p {
        font-size: 15px !important;
    }

    .search-hero__form {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }

    .search-hero__form input,
    .search-hero__form button {
        width: 100% !important;
    }

    .feed-section--search .feed-container,
    .feed-section--search .feed-list,
    .feed-section--search .feed-heading-row {
        width: calc(100% - 32px) !important;
        max-width: none !important;
    }

    .feed-section--search .news-list-card {
        grid-template-columns: 112px minmax(0, 1fr) !important;
    }

    .feed-section--search .news-list-card__content {
        padding: 13px 14px !important;
    }

    .error-page {
        min-height: auto !important;
        padding: 56px 0 !important;
    }

    .error-page__inner {
        width: calc(100% - 32px) !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .error-page__code {
        font-size: 92px !important;
    }

    .error-page h1 {
        font-size: 34px !important;
    }

    .error-page p {
        font-size: 16px !important;
    }


    .site-footer-v4 {
        margin-top: 54px !important;
    }

    .site-footer-v4__inner {
        width: calc(100% - 32px) !important;
        padding: 32px 0 30px !important;
    }

    .site-footer-v4__top {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .site-footer-v4__brand {
        font-size: 36px !important;
        line-height: 1 !important;
    }

    .site-footer-v4__lead {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }
}

@media (max-width: 420px) {
    .hero-main {
        min-height: 500px !important;
    }

    .hero-main__content {
        min-height: 500px !important;
    }

    .hero-main__text h1 {
        font-size: 30px !important;
    }

    .hero-main__text p {
        font-size: 15px !important;
    }

    .hero-secondary__item {
        flex-basis: 218px !important;
        width: 218px !important;
        min-width: 218px !important;
    }

    .news-list-card {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        min-height: 104px !important;
    }

    .news-list-card__image-wrap,
    .news-list-card__image {
        width: 96px !important;
        min-height: 104px !important;
    }

    .news-list-card__title {
        font-size: 14px !important;
    }

    .news-list-card__excerpt {
        font-size: 12px !important;
        -webkit-line-clamp: 2;
    }

    .article-title {
        font-size: 29px !important;
    }

    .article-content {
        font-size: 16px !important;
    }
}



@media (max-width: 900px) {

    .news-list-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        background: #ffffff !important;
    }

    .news-list-card__image-wrap {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
        background: #eeeeee !important;
    }

    .news-list-card__image {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .news-list-card__content {
        display: block !important;
        width: 100% !important;
        padding: 18px 18px 20px !important;
        min-width: 0 !important;
    }

    .news-list-card__title {
        display: block !important;
        margin-bottom: 10px !important;
        font-size: 21px !important;
        line-height: 1.22 !important;
        font-weight: 800 !important;
        letter-spacing: -0.035em !important;
        color: #111111 !important;
    }

    .news-list-card__excerpt {
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
        line-height: 1.48 !important;
        color: #8a919c !important;
    }

    .news-list-card__date {
        display: block !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: #8a919c !important;
    }

    .feed-section--search .news-list-card,
    .article-related__grid .news-list-card {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }

    .feed-section--search .news-list-card__image-wrap,
    .article-related__grid .news-list-card__image-wrap {
        width: 100% !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
    }

    .feed-section--search .news-list-card__image,
    .article-related__grid .news-list-card__image {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }
}

@media (max-width: 420px) {

    .news-list-card__title {
        font-size: 20px !important;
        line-height: 1.22 !important;
    }

    .news-list-card__excerpt {
        font-size: 14px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 3 !important;
    }
}
