:root {
    --iz-green: #19a37b;
    --iz-blue: #1477d4;
    --iz-ink: #171b22;
    --iz-muted: #687386;
    --iz-line: #e7eaf0;
    --iz-soft: #f5f7fa;
    --iz-accent: #f05a28;
    --iz-radius: 8px;
    --iz-shadow: 0 18px 42px rgba(23, 27, 34, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--iz-ink);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease;
}

a:hover {
    color: var(--iz-green);
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1200px;
}

.top-strip {
    border-bottom: 1px solid var(--iz-line);
    color: #5d6673;
    font-size: 13px;
}

.top-strip .container {
    min-height: 38px;
}

.top-strip__links,
.top-strip__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-strip__right a {
    color: #2c333d;
}

.site-header {
    background: #fff;
    position: relative;
    z-index: 20;
}

.header-brand-row {
    display: grid;
    grid-template-columns: auto minmax(220px, 330px) 1fr;
    align-items: center;
    gap: 28px;
    min-height: 116px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-logo__icon {
    width: 44px;
    height: 50px;
    height: auto;
    flex: 0 0 auto;
}

.site-logo__text {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.site-logo__name {
    color: var(--iz-ink);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(28px, 2.4vw, 35px);
    font-weight: 900;
    line-height: .95;
}

.site-logo__tagline {
    color: #596574;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.header-ad {
    min-height: 76px;
    border: 1px solid var(--iz-line);
    background: linear-gradient(135deg, #f6fbff, #f4f8f6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--iz-muted);
    text-align: center;
    font-size: 13px;
}

.header-ad strong {
    color: var(--iz-ink);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 18px;
    margin-top: 4px;
}

.ad-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 96px;
    margin: 34px 0;
    border: 1px solid var(--iz-line);
    background: linear-gradient(135deg, #f7f9fc, #f3f8f6);
    color: var(--iz-muted);
    overflow: hidden;
    text-align: center;
}

.ad-slot__label {
    position: absolute;
    top: 7px;
    left: 9px;
    z-index: 2;
    color: #7a8493;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.ad-slot__link,
.ad-slot__media,
.ad-slot__network,
.ad-slot__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: inherit;
}

.ad-slot__link {
    color: inherit;
}

.ad-slot__link:hover {
    color: inherit;
}

.ad-slot__link img,
.ad-slot__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .25s ease, opacity .25s ease;
}

.ad-slot__link:hover img {
    opacity: .94;
    transform: scale(1.01);
}

.ad-slot__empty {
    flex-direction: column;
    gap: 3px;
    padding: 18px 24px;
}

.ad-slot__empty span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ad-slot__empty strong {
    color: var(--iz-ink);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 19px;
    line-height: 1.1;
}

.ad-slot__network {
    padding: 18px;
}

.header-ad.ad-slot {
    min-height: 76px;
    margin: 0;
}

.ad-slot--wide {
    min-height: 104px;
}

.ad-slot--site-band {
    min-height: 250px;
    margin: 52px 0;
    border-right: 0;
    border-left: 0;
}

.ad-slot--site-band .ad-slot__empty,
.ad-slot--site-band .ad-slot__network,
.ad-slot--site-band .ad-slot__link,
.ad-slot--site-band .ad-slot__media {
    max-width: 970px;
    margin: 0 auto;
}

.ad-slot--sidebar {
    min-height: 250px;
    margin: 0;
}

.ad-slot--size-half-page-300x600 {
    min-height: 600px;
}

.ad-slot--size-billboard-970x250 {
    min-height: 250px;
}

.ad-slot--size-large-rectangle-336x280 {
    min-height: 280px;
}

.ad-slot--article-inline {
    float: right;
    width: min(336px, 44%);
    min-height: 250px;
    margin: 8px 0 22px 24px;
}

.icon-button,
.nav-burger,
.nav-search,
.back-to-top {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: inherit;
    border-radius: 50%;
}

.icon-button:hover,
.nav-burger:hover,
.nav-search:hover {
    background: rgba(25, 163, 123, .1);
    color: var(--iz-green);
}

.main-nav {
    border-top: 1px solid var(--iz-line);
    border-bottom: 1px solid var(--iz-line);
    background: #fff;
}

.main-nav.is-sticky {
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 10px 30px rgba(23, 27, 34, .08);
}

.main-nav__inner {
    display: flex;
    align-items: center;
    min-height: 58px;
    gap: 14px;
    position: relative;
}

.nav-burger {
    border-right: 1px solid var(--iz-line);
    border-radius: 0;
    width: 48px;
}

.nav-menu {
    align-items: center;
    flex: 1 1 auto;
    gap: 0;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
    list-style: none;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu > li {
    flex: 0 0 auto;
    position: relative;
}

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 58px;
    padding: 0 10px;
    color: #202631;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.nav-menu > li > a.active,
.nav-menu > li > a:hover {
    color: var(--iz-green);
}

.has-mega:hover .mega-menu,
.has-mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: fixed;
    z-index: 1100;
    left: var(--mega-left, 0);
    top: var(--mega-top, 0);
    width: min(820px, 80vw);
    max-height: calc(100vh - var(--mega-top, 0px) - 18px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--iz-line);
    box-shadow: var(--iz-shadow);
    padding: 22px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.mega-menu__links {
    display: grid;
    align-content: start;
}

.mega-menu__tree,
.offcanvas-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu__tree a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--iz-line);
    font-weight: 700;
}

.mega-menu__tree--nested {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--iz-line);
}

.mega-menu__tree--nested a {
    color: #4d5968;
    font-size: 14px;
}

.mega-menu__tree a.active,
.offcanvas-menu__list a.active {
    color: var(--iz-green);
}

.mega-menu__posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mini-card {
    display: grid;
    gap: 8px;
}

.mini-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mini-card span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.main-nav__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.subscribe-link {
    align-items: center;
    flex: 0 0 auto;
    gap: 5px;
    height: 36px;
    padding: 0 10px;
    background: var(--iz-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.subscribe-link:hover {
    color: #fff;
    background: #138667;
}

.ticker {
    background: #111821;
    color: #fff;
    font-size: 14px;
}

.ticker__inner {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 44px;
}

.ticker strong {
    background: var(--iz-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 10px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.ticker__viewport {
    min-width: 0;
    overflow: hidden;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.ticker__viewport::before,
.ticker__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    z-index: 1;
}

.ticker__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #111821 0%, rgba(17, 24, 33, 0) 100%);
}

.ticker__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #111821 0%, rgba(17, 24, 33, 0) 100%);
}

.ticker__items {
    display: inline-flex;
    gap: 26px;
    min-width: max-content;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
    will-change: transform;
}

.ticker__items:hover {
    animation-play-state: paused;
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40%); }
}

.page-shell {
    padding: 34px 0 64px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 4px;
    margin-bottom: 42px;
}

.featured-grid__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.overlay-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: #0f141b;
}

.overlay-card a,
.overlay-card img,
.overlay-card__shade {
    position: absolute;
    inset: 0;
}

.overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .45s ease, filter .45s ease;
}

.overlay-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.overlay-card__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .76));
}

.overlay-card__content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    color: #fff;
}

.overlay-card h2 {
    margin: 10px 0 8px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 41px);
    font-weight: 800;
    line-height: 1.04;
}

.overlay-card p {
    max-width: 680px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .86);
}

.overlay-card--large {
    min-height: 526px;
}

.featured-grid__side .overlay-card {
    min-height: 261px;
}

.featured-grid__side .overlay-card h2 {
    font-size: 21px;
}

.featured-grid__side .overlay-card p {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--pill-color, var(--iz-green));
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.category-pill--flat {
    color: var(--pill-color, var(--iz-green));
    background: transparent;
    padding: 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #7a8493;
    font-size: 13px;
}

.overlay-card .post-meta {
    color: rgba(255, 255, 255, .82);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
    border-bottom: 2px solid #111821;
}

.section-heading h2 {
    margin: 0;
    padding: 0 13px 8px 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading a {
    color: var(--iz-muted);
    font-size: 13px;
    font-weight: 700;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
    align-items: start;
}

.post-list {
    display: grid;
    gap: 26px;
}

.post-list-item {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--iz-line);
}

.post-list-item__image {
    overflow: hidden;
    background: var(--iz-soft);
}

.post-list-item__image img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    transition: transform .35s ease;
}

.post-list-item:hover .post-list-item__image img {
    transform: scale(1.06);
}

.post-list-item h3 {
    margin: 7px 0 6px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.12;
}

.post-list-item p {
    margin: 10px 0 0;
    color: #596574;
}

.split-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 42px 0;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.compact-grid .post-list-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border-bottom: 0;
}

.compact-grid .post-list-item__image img {
    min-height: 210px;
}

.topic-card {
    border-top: 4px solid var(--iz-green);
    background: var(--iz-soft);
    padding: 18px;
}

.topic-card h3 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.15;
    margin: 10px 0 8px;
}

.video-band {
    margin: 54px 0;
    padding: 42px 0;
    background: #111821;
    color: #fff;
}

.video-band .section-heading {
    border-color: rgba(255, 255, 255, .55);
}

.video-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 18px;
}

.play-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--iz-green);
}

.content-sidebar {
    position: sticky;
    top: 86px;
    display: grid;
    gap: 28px;
}

.sidebar-widget {
    border: 1px solid var(--iz-line);
    padding: 22px;
    background: #fff;
}

.sidebar-widget h3 {
    margin: 0 0 16px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
}

.small-post,
.sidebar-post {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--iz-line);
}

.small-post:first-of-type,
.sidebar-post:first-of-type {
    padding-top: 0;
}

.small-post:last-child,
.sidebar-post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.small-post img,
.sidebar-post img {
    width: 86px;
    height: 68px;
    object-fit: cover;
}

.small-post strong,
.sidebar-post span {
    display: block;
    color: var(--iz-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.28;
}

.small-post small,
.sidebar-post small {
    display: block;
    color: var(--iz-muted);
    font-size: 12px;
    margin-top: 5px;
}

.social-widget {
    display: grid;
    gap: 10px;
}

.social-widget a {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--iz-line);
}

.promo-widget {
    background: linear-gradient(135deg, #e9f8f4, #edf5ff);
    border: 0;
}

.promo-widget span {
    color: var(--iz-green);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.promo-widget a,
.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: var(--iz-green);
    color: #fff;
    font-weight: 800;
    border: 0;
}

.promo-widget a:hover,
.primary-action:hover {
    color: #fff;
    background: #138667;
}

.newsletter-band,
.app-promo {
    margin: 46px 0;
    padding: 34px;
    background: linear-gradient(135deg, #111821 0%, #193041 52%, #164836 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
}

.newsletter-band h2,
.app-promo h2 {
    margin: 0 0 8px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
}

.newsletter-band form,
.footer-newsletter form {
    display: flex;
    min-width: min(420px, 100%);
}

.footer-newsletter form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) max-content max-content;
    align-items: center;
    min-width: min(620px, 100%);
}

.newsletter-band input,
.footer-newsletter input,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--iz-line);
    padding: 10px 13px;
    outline: 0;
}

.newsletter-band input {
    border: 0;
}

.footer-newsletter input {
    height: 46px;
}

.newsletter-band button,
.footer-newsletter button,
.contact-form button {
    min-height: 46px;
    border: 0;
    background: var(--iz-accent);
    color: #fff;
    font-weight: 900;
    padding: 0 14px;
    white-space: nowrap;
}

.newsletter-band button {
    flex: 0 0 auto;
    min-width: 108px;
}

.footer-newsletter button {
    min-height: 46px;
    height: 46px;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
}

.footer-newsletter form > a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    white-space: nowrap;
}

.footer-newsletter form > a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
}

.app-store-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .35);
    padding: 9px 13px;
    color: #fff;
    font-weight: 800;
}

.page-title {
    margin: 0 0 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--iz-line);
}

.breadcrumb-lite {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--iz-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.page-title h1 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.02;
    font-weight: 900;
    margin: 0;
}

.page-title p {
    color: #596574;
    margin: 12px 0 0;
    font-size: 18px;
}

.article-header {
    max-width: 920px;
    margin: 0 auto 26px;
    text-align: center;
}

.article-header .post-meta {
    justify-content: center;
}

.article-title {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(38px, 5.4vw, 68px);
    line-height: .98;
    font-weight: 900;
    margin: 12px 0;
}

.article-lead {
    color: #52606f;
    font-size: 20px;
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.article-share a,
.article-share button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    border: 1px solid var(--iz-line);
    background: #fff;
    padding: 0 12px;
    color: var(--iz-ink);
    font-size: 13px;
    font-weight: 800;
}

.article-hero {
    margin: 0 auto 34px;
    max-width: 1180px;
}

.article-lightbox-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--iz-soft);
    color: #fff;
}

.article-lightbox-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 33, .18);
    opacity: 0;
    transition: opacity .2s ease;
}

.article-lightbox-link:hover::after,
.article-lightbox-link:focus-visible::after {
    opacity: 1;
}

.article-lightbox-link__hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(17, 24, 33, .82);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.article-lightbox-link:hover .article-lightbox-link__hint,
.article-lightbox-link:focus-visible .article-lightbox-link__hint {
    opacity: 1;
    transform: translateY(0);
}

.article-hero img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.article-content {
    font-size: 18px;
}

.article-content h2,
.article-content h3 {
    margin: 32px 0 12px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
    line-height: 1.12;
}

.article-content blockquote {
    margin: 28px 0;
    padding: 24px 30px;
    border-left: 5px solid var(--iz-green);
    background: var(--iz-soft);
    color: #2c333d;
    font-size: 23px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 700;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0;
}

.article-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-gallery .article-lightbox-link {
    height: 100%;
}

.document-list,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.document-list a,
.tag-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--iz-line);
    padding: 8px 11px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
}

.author-box,
.comments-box,
.contact-card,
.plain-card {
    border: 1px solid var(--iz-line);
    padding: 24px;
    background: #fff;
}

.author-box {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    margin: 34px 0;
}

.author-avatar {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iz-green), var(--iz-blue));
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.comments-list {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.comment {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--iz-line);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
}

.contact-card {
    display: grid;
    gap: 16px;
}

.contact-method {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
}

.contact-method i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(25, 163, 123, .12);
    color: var(--iz-green);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.map-placeholder {
    min-height: 240px;
    display: grid;
    place-items: center;
    margin-top: 28px;
    background:
        linear-gradient(90deg, rgba(23, 27, 34, .05) 1px, transparent 1px),
        linear-gradient(rgba(23, 27, 34, .05) 1px, transparent 1px),
        linear-gradient(135deg, #eef8f4, #f0f6ff);
    background-size: 32px 32px, 32px 32px, auto;
    color: #425061;
    font-weight: 800;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sitemap-grid ul {
    padding-left: 18px;
    margin: 0;
}

.error-page {
    min-height: 56vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.error-page__code {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: clamp(84px, 18vw, 180px);
    line-height: .8;
    color: var(--iz-green);
    font-weight: 900;
}

.public-flash {
    padding-top: 18px;
}

.unsubscribe-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--iz-line);
    background: #fff;
    text-align: center;
}

.unsubscribe-panel > i {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #edf8f4;
    color: var(--iz-green);
    font-size: 26px;
}

.unsubscribe-panel > span {
    color: var(--iz-green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.unsubscribe-panel h1 {
    margin: 6px 0 10px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
}

.unsubscribe-panel p {
    color: #596574;
}

.unsubscribe-panel .contact-form {
    margin: 22px auto 0;
    max-width: 480px;
    text-align: left;
}

.site-footer {
    background: #111821;
    color: rgba(255, 255, 255, .82);
    padding: 54px 0 0;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-newsletter span {
    color: var(--iz-green);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}

.footer-newsletter h2 {
    margin: 4px 0 0;
    color: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr 1.1fr .8fr;
    gap: 34px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .site-logo__name {
    color: #fff;
}

.footer-brand .site-logo__tagline {
    color: rgba(255, 255, 255, .64);
}

.site-footer h3 {
    color: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, .82);
}

.footer-post span {
    display: block;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
}

.footer-link-rows {
    display: grid;
    gap: 10px;
    margin-top: 34px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-link-rows div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-link-rows a {
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-row a {
    display: inline-flex;
    margin: 0;
}

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.search-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.search-panel__close {
    position: absolute;
    top: 28px;
    right: 28px;
    border: 0;
    background: transparent;
    font-size: 26px;
}

.search-panel__form {
    width: min(760px, calc(100% - 32px));
}

.search-panel__form label {
    display: block;
    margin-bottom: 12px;
    color: var(--iz-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.search-panel__form input {
    width: 100%;
    border: 0;
    border-bottom: 3px solid var(--iz-ink);
    outline: 0;
    padding: 16px 0;
    font-size: clamp(24px, 5vw, 50px);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 800;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    background: var(--iz-ink);
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-offcanvas {
    width: min(390px, 92vw) !important;
}

.offcanvas-search {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 0;
    margin-bottom: 22px;
}

.offcanvas-search input {
    border: 1px solid var(--iz-line);
    padding: 10px 12px;
}

.offcanvas-search button {
    border: 0;
    background: var(--iz-green);
    color: #fff;
}

.offcanvas-menu {
    display: grid;
    margin-bottom: 26px;
    border-top: 1px solid var(--iz-line);
}

.offcanvas-menu__list a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--iz-line);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.offcanvas-menu__list--nested {
    margin-left: 14px;
    padding-left: 12px;
    border-left: 2px solid var(--iz-line);
}

.offcanvas-menu__list--nested a {
    color: #566273;
    font-size: 14px;
}

.offcanvas-widget h3 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

@media (max-width: 1199px) {
    .header-brand-row {
        grid-template-columns: auto 1fr auto;
        min-height: 92px;
    }

    .site-logo {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .top-strip__links {
        display: none;
    }

    .top-strip .container {
        justify-content: center !important;
    }

    .featured-grid,
    .content-layout,
    .contact-grid,
    .footer-newsletter,
    .newsletter-band,
    .app-promo {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .ad-slot--article-inline {
        float: none;
        width: 100%;
        margin: 24px 0;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid,
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .header-brand-row {
        gap: 8px;
        min-height: 76px;
    }

    .site-logo__icon {
        width: 38px;
        height: auto;
    }

    .site-logo__name {
        font-size: 28px;
    }

    .site-logo__tagline {
        font-size: 9px;
    }

    .ticker__inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 6px;
        padding: 8px 12px 10px;
        min-height: auto;
    }

    .ticker strong {
        justify-self: flex-start;
        min-height: 24px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .ticker__viewport {
        min-height: 24px;
        width: 100%;
    }

    .ticker__viewport::before {
        width: 14px;
    }

    .ticker__viewport::after {
        width: 32px;
    }

    .ticker__items {
        gap: 18px;
        animation-duration: 24s;
    }

    .page-shell {
        padding: 24px 0 44px;
    }

    .ad-slot {
        min-height: 92px;
        margin: 24px 0;
    }

    .ad-slot__empty {
        padding: 18px 14px;
    }

    .ad-slot__empty strong {
        font-size: 16px;
    }

    .ad-slot--site-band,
    .ad-slot--size-billboard-970x250,
    .ad-slot--size-half-page-300x600 {
        min-height: 250px;
    }

    .ad-slot--sidebar {
        margin: 0;
    }

    .featured-grid__side,
    .compact-grid,
    .split-widgets,
    .video-grid,
    .footer-grid,
    .sitemap-grid,
    .article-gallery {
        grid-template-columns: 1fr;
    }

    .overlay-card,
    .featured-grid__side .overlay-card,
    .overlay-card--large {
        min-height: 310px;
    }

    .overlay-card__content {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .post-list-item,
    .author-box {
        grid-template-columns: 1fr;
    }

    .post-list-item__image img {
        min-height: 230px;
    }

    .newsletter-band,
    .app-promo {
        padding: 24px;
    }

    .newsletter-band form,
    .footer-newsletter form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        min-width: 0;
    }

    .article-share {
        justify-content: flex-start;
    }

    .article-header {
        text-align: left;
    }

    .article-header .post-meta {
        justify-content: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
