:root {
    /* Переопределяем или добавляем специфичные для main.css переменные, если нужно */
    --ss-bg-glass: rgba(255, 255, 255, 0.16);
    --ss-dark: #0f172a;
    --ss-footer-bg: #020617;
    --ss-footer-dark: #0b1120;
}

/* Картинки в контенте */
.content img {
    max-width: 100%;
    height: auto;
}



/* ===== Header ===== */
/* ========================================
   СОВРЕМЕННЫЙ HEADER
   ======================================== */

.ss-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Прозрачный header на главной */
.ss-header--overlay {
    /*background: rgba(15, 23, 42, 0.1);*/
    backdrop-filter: blur(8px);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
}

.ss-header--overlay .ss-header__inner {
    color: white;
}

/* Прокрутка - делаем более непрозрачным */
.ss-header--overlay.scrolled {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Solid header на внутренних страницах */
.ss-header--solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.ss-header--solid .ss-header__inner {
    color: #0f172a;
}

/* Внутренний контейнер */
.ss-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

/* ===== ЛОГОТИП ===== */
.ss-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ss-header__logo:hover {
    opacity: 0.8;
}

.ss-header__logo img {
    height: 40px;
    width: auto;
}

.ss-header__logo-svg {
    color: currentColor;
}

.ss-header--solid .ss-header__logo-svg {
    color: var(--ss-orange);
}

.ss-header__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: currentColor;
}

/* ===== НАВИГАЦИЯ ===== */
.ss-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ss-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.ss-header__menu li {
    margin: 0;
}

.ss-header__menu a {
    color: currentColor;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.ss-header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ss-orange), #fb923c);
    transition: width 0.3s ease;
}

.ss-header__menu a:hover::after,
.ss-header__menu a.current-menu-item::after {
    width: 100%;
}

.ss-header--overlay .ss-header__menu a:hover {
    color: var(--ss-orange);
}

.ss-header--solid .ss-header__menu a:hover {
    color: var(--ss-orange);
}

/* ===== ACTIONS ===== */
.ss-header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Телефон */
.ss-header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: currentColor;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ss-header__phone:hover {
    color: var(--ss-orange);
}

.ss-header__phone svg {
    color: var(--ss-orange);
}

/* Соцсети */
.ss-header__socials {
    display: flex;
    gap: 0.5rem;
}

.ss-header__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-header--solid .ss-header__social {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.ss-header__social:hover {
    background: linear-gradient(135deg, var(--ss-orange), #fb923c);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* CTA кнопка */
.ss-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--ss-orange), #fb923c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.3);
}

.ss-header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.4);
    color: white;
}

.ss-header__cta svg {
    transition: transform 0.3s ease;
}

.ss-header__cta:hover svg {
    transform: translateX(4px);
}

/* ===== БУРГЕР-МЕНЮ ===== */
.ss-header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.ss-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.ss-header__burger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.ss-header__burger.active span:nth-child(2) {
    opacity: 0;
}

.ss-header__burger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.ss-header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    overflow-y: auto;
}

.ss-header__mobile-menu.active {
    transform: translateX(0);
}

.ss-header__mobile-inner {
    padding: 6rem 2rem 2rem;
}

/* Мобильная навигация */
.ss-header__mobile-nav {
    list-style: none;
    margin: 0 0 3rem;
    padding: 0;
}

.ss-header__mobile-nav li {
    margin-bottom: 1rem;
}

.ss-header__mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.ss-header__mobile-nav a::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ss-orange), #fb923c);
    transition: width 0.3s ease;
}

.ss-header__mobile-nav a:hover::before,
.ss-header__mobile-nav a.current-menu-item::before {
    width: 0.5rem;
}

.ss-header__mobile-nav a:hover {
    color: var(--ss-orange);
    padding-left: 1rem;
}

/* Мобильные контакты */
.ss-header__mobile-contacts {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.ss-header__mobile-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ss-header__mobile-phone svg {
    color: var(--ss-orange);
}

.ss-header__mobile-socials {
    display: flex;
    gap: 1rem;
}

.ss-header__mobile-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.ss-header__mobile-socials a:hover {
    background: linear-gradient(135deg, var(--ss-orange), #fb923c);
    border-color: transparent;
    transform: translateY(-4px);
}

/* Мобильная CTA */
.ss-header__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--ss-orange), #fb923c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.4);
}

.ss-header__mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 146, 60, 0.5);
    color: white;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 991.98px) {

    .ss-header__nav,
    .ss-header__socials,
    .ss-header__cta {
        display: none;
    }

    .ss-header__burger {
        display: flex;
    }

    .ss-header__phone span {
        display: none;
    }

    .ss-header__phone {
        padding: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .ss-header__inner {
        padding: 0.75rem 0;
    }

    .ss-header__logo img {
        height: 32px;
    }

    .ss-header__phone {
        display: none;
    }
}

/* Компенсация для fixed header */


@media (max-width: 767.98px) {
    body {
        padding-top: 64px;
    }
}

/* ===== Header end ===== */


/* ===== Footer ===== */


.ss-footer {
    background: radial-gradient(circle at top left, var(--ss-footer-dark) 0, var(--ss-footer-bg) 40%, var(--ss-footer-bg) 100%);
    color: #e5e7eb;
    margin-top: 4rem;
}

.ss-footer-main {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.ss-footer-title {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #f9fafb;
}

.ss-footer-tagline {
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
}

.ss-footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e5e7eb;
    max-width: 320px;
}

.ss-footer-heading {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.ss-footer-nav ul,
.ss-footer-nav {
    margin: 0;
    padding: 0;
}

.ss-footer-nav a {
    display: inline-block;
    padding: 0.15rem 0;
    font-size: 0.95rem;
    color: #e5e7eb;
    text-decoration: none;
}

.ss-footer-nav a:hover {
    color: #bfdbfe;
}

.ss-footer-contacts {
    font-size: 0.95rem;
}

.ss-footer-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
}

.ss-footer-link {
    color: #e5e7eb;
    text-decoration: none;
}

.ss-footer-link:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.ss-footer-social-btn {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    padding-inline: 0.9rem;
}

.ss-footer-social-btn:hover {
    background: var(--ss-blue-main);
    border-color: var(--ss-blue-main);
    color: #f9fafb;
}

.ss-footer-note {
    max-width: 260px;
}

.ss-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: var(--ss-footer-bg);
}

@media (max-width: 575.98px) {
    .ss-footer {
        margin-top: 3rem;
    }

    .ss-footer-about,
    .ss-footer-note {
        max-width: 100%;
    }
}

/* === Promotions === */
.ss-promos-home,
.ss-promos-archive,
.ss-promos-related {
    padding: 96px 0;
}

.ss-promos-home {
    background: linear-gradient(180deg, rgba(0, 144, 208, 0.08), rgba(255, 133, 52, 0.04));
}

.ss-promos-home__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ss-promos-home__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--ss-orange);
    margin-bottom: 0.35rem;
}

.ss-promos-home__title {
    font-family: var(--ss-font-heading);
    font-size: 2.4rem;
    margin: 0;
    color: var(--ss-dark-text);
}

.ss-promos-home__subtitle {
    color: rgba(21, 41, 64, 0.8);
    max-width: 640px;
    margin-top: 0.5rem;
}

.ss-promos-home__all-link,
.ss-promos-related__all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 144, 208, 0.2);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ss-blue-main);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 144, 208, 0.08);
}

.ss-promos-home__all-link:hover,
.ss-promos-related__all:hover {
    background: var(--ss-blue-main);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(0, 144, 208, 0.2);
}

.ss-promos-home__grid,
.ss-promos-archive__grid,
.ss-promos-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.ss-promos-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ss-promos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.ss-promos-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ss-promos-card__media {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 144, 208, 0.5), rgba(2, 6, 23, 0.75));
    background-size: cover;
    background-position: center;
}

.ss-promos-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.ss-promos-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ss-orange);
    color: #fff;
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 133, 52, 0.35);
    z-index: 2;
}

.ss-promos-card__status {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ss-dark-text);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ss-promos-card__status-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.ss-promos-card__status--expired {
    background: rgba(148, 163, 184, 0.85);
    color: #0f172a;
}

.ss-promos-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ss-promos-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--ss-dark-text);
}

.ss-promos-card__excerpt {
    margin: 0;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.5;
}

.ss-promos-card__condition {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(15, 23, 42, 0.75);
    font-weight: 600;
}

.ss-promos-card__condition svg {
    color: var(--ss-blue-main);
}

.ss-promos-card__footer {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--ss-blue-main);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ss-promos-card--expired {
    opacity: 0.9;
    filter: grayscale(0.1);
}

.ss-promos-card--expired .ss-promos-card__cta {
    color: rgba(15, 23, 42, 0.75);
}

.ss-promos-archive__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.ss-promos-archive__title {
    font-family: var(--ss-font-heading);
    font-size: 2.6rem;
    margin: 0.35rem 0 0.5rem;
    color: var(--ss-dark-text);
}

.ss-promos-archive__eyebrow {
    color: var(--ss-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

.ss-promos-archive__intro {
    color: rgba(15, 23, 42, 0.7);
    margin: 0;
}

.ss-promos-archive__empty {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(15, 23, 42, 0.12);
    border-radius: 18px;
}

.ss-promos-archive__pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.ss-promos-archive__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 0.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 144, 208, 0.15);
    color: var(--ss-dark-text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.ss-promos-archive__pagination .page-numbers.current,
.ss-promos-archive__pagination .page-numbers:hover {
    background: var(--ss-blue-main);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 144, 208, 0.2);
}

.ss-promo-single__hero {
    position: relative;
    padding: 140px 0 90px;
    color: white;
    background: linear-gradient(120deg, rgba(0, 144, 208, 0.9), rgba(2, 6, 23, 0.92));
    background-size: cover;
    background-position: center;
}

.ss-promo-single__hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.8) 100%);
}

.ss-promo-single__hero .container {
    position: relative;
    z-index: 2;
}

.ss-promo-single__hero-content {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ss-promo-single__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ss-promo-single__badge {
    background: var(--ss-orange);
    color: white;
    border-radius: 12px;
    padding: 0.45rem 0.8rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(255, 133, 52, 0.4);
}

.ss-promo-single__status {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.45rem 0.8rem;
    border-radius: 12px;
    font-weight: 700;
}

.ss-promo-single__status--expired {
    background: rgba(148, 163, 184, 0.9);
    color: #0f172a;
}

.ss-promo-single__title {
    font-family: var(--ss-font-heading);
    font-size: 3rem;
    margin: 0;
}

.ss-promo-single__subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.ss-promo-single__info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ss-promo-single__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ss-promo-single__breadcrumbs nav {
    margin-bottom: 1rem;
}

.ss-promo-single__content {
    padding: 80px 0;
    background: var(--ss-cream);
}

.ss-promo-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 360px);
    gap: 2rem;
}

.ss-promo-single__main {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.ss-promo-single__sidebar {
    position: relative;
}

.ss-promo-single__sidecard {
    position: sticky;
    top: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 194, 0.96));
    border-radius: 20px;
    padding: 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ss-promo-single__side-badge {
    align-self: flex-start;
    background: var(--ss-blue-main);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    font-weight: 800;
}

.ss-promo-single__side-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ss-promo-single__side-label {
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.9rem;
}

.ss-promo-single__side-text {
    margin: 0;
    color: var(--ss-dark-text);
    font-weight: 600;
}

.ss-promo-single__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--ss-blue-main), #32b7f5);
    color: white;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 38px rgba(0, 144, 208, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-promo-single__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(0, 144, 208, 0.32);
}

.ss-promos-related {
    background: white;
    padding-top: 40px;
}

.ss-promos-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ss-promos-related__title {
    font-family: var(--ss-font-heading);
    font-size: 2rem;
    margin: 0;
    color: var(--ss-dark-text);
}

@media (max-width: 1199.98px) {
    .ss-promo-single__layout {
        grid-template-columns: 1fr;
    }

    .ss-promo-single__sidecard {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .ss-promos-card__media {
        height: 160px;
    }

    .ss-promos-home__title {
        font-size: 2rem;
    }

    .ss-promos-archive__title {
        font-size: 2.2rem;
    }

    .ss-promo-single__title {
        font-size: 2.4rem;
    }

    .ss-promo-single__content {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .ss-promos-home,
    .ss-promos-archive {
        padding: 72px 0;
    }

    .ss-promos-home__grid,
    .ss-promos-archive__grid,
    .ss-promos-related__grid {
        grid-template-columns: 1fr;
    }

    .ss-promos-card__body {
        padding: 1.1rem 1.1rem 1.25rem;
    }

    .ss-promos-card__title {
        font-size: 1.1rem;
    }

    .ss-promos-card__media {
        height: 150px;
    }

    .ss-promos-home__head,
    .ss-promos-related__head {
        align-items: flex-start;
    }

    .ss-promos-home__all-link,
    .ss-promos-related__all {
        width: 100%;
        justify-content: center;
    }

    .ss-promo-single__hero {
        padding: 120px 0 70px;
    }

    .ss-promo-single__title {
        font-size: 2rem;
    }
}
