*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Noto Sans", sans-serif;
    background: radial-gradient(circle at top, rgba(29, 126, 242, 0.10), transparent 36%), var(--bg);
    color: var(--text);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(244, 248, 252, 0.88);
    border-bottom: 1px solid var(--border);
}

.site-header__inner,
.site-footer__inner,
.page-shell,
.site-header__banner,
.footer-banners {
    width: min(var(--site-max), calc(100vw - 32px));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
}

.site-header__panel {
    display: contents;
}

.mobile-menu-toggle {
    display: none;
}

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

.brand__mark {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    flex: 0 0 auto;
}

.brand__mark img {
    width: 82px;
    height: 82px;
    object-fit: cover;
}

.brand__copy strong,
.brand__copy small {
    display: block;
}

.brand__copy strong {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    line-height: 1;
    letter-spacing: 0.01em;
}

.brand__copy small {
    color: var(--muted);
    font-size: clamp(0.74rem, 1.4vw, 0.98rem);
    margin-top: 6px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    order: 3;
}

.site-nav a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    transition: 0.2s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 10px 22px rgba(18, 38, 61, 0.08);
}

.site-header__actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.lang-switch a {
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
}

.lang-switch a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}

.button,
button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
button:hover,
.button-link:hover {
    transform: translateY(-1px);
}

.button--primary,
button,
.button.primary {
    background: linear-gradient(135deg, var(--accent), #4cb6a6);
    color: #fff;
    box-shadow: 0 12px 24px rgba(29, 126, 242, 0.22);
}

.button--ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}

.page-shell {
    padding: 28px 0 56px;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading__eyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    line-height: 1.18;
}

.section-heading p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero,
.panel,
.admin-section,
.form-panel,
.metric-card,
.ad-card,
.category-card,
.detail-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero {
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -60px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 126, 242, 0.20), transparent 70%);
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2.8vw, 2.25rem);
    line-height: 1.14;
}

.hero p {
    max-width: 640px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.hero__actions,
.stack-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero__aside,
.panel,
.metric-card,
.detail-card,
.admin-section {
    padding: 24px;
}

.metric-grid,
.card-grid,
.category-grid,
.ads-grid,
.admin-grid,
.two-col {
    display: grid;
    gap: 18px;
}

.metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.category-grid,
.card-grid,
.ads-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.two-col {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.metric-card strong {
    display: block;
    font-size: 2rem;
}

.metric-card span {
    color: var(--muted);
}

.category-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.category-card__icon {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: var(--surface-alt);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.category-card__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.category-card h3,
.ad-card h3,
.detail-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.category-card p,
.ad-card p,
.muted,
label small,
.admin-subtitle {
    color: var(--muted);
}

.subcategory-tags,
.chip-row,
.ad-card__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--text);
    font-size: 0.92rem;
}

.chip--soft {
    background: rgba(76, 182, 166, 0.14);
    color: #0f6b60;
}

.ad-card {
    padding: 22px;
    position: relative;
}

.ad-card__footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.ad-card--classic {
    border-radius: 20px;
}

.ad-card--notebook {
    background-image:
        linear-gradient(to bottom, rgba(29, 126, 242, 0.08) 1px, transparent 1px),
        linear-gradient(to right, rgba(29, 126, 242, 0.05) 1px, transparent 1px);
    background-size: 100% 28px, 28px 100%;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(33, 56, 91, 0.10);
}

.ad-card--folded-corner {
    border-radius: 20px;
    overflow: hidden;
}

.ad-card--folded-corner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.15) 49%, rgba(214, 228, 246, 0.95) 50%, rgba(245, 249, 255, 1) 100%);
    border-bottom-left-radius: 18px;
    box-shadow: -8px 8px 18px rgba(31, 47, 79, 0.08);
}

.ad-card--torn-paper {
    border-radius: 14px 20px 12px 22px;
    clip-path: polygon(0 2%, 7% 0, 15% 3%, 24% 1%, 35% 4%, 45% 0, 56% 3%, 65% 1%, 76% 4%, 86% 0, 100% 3%, 98% 17%, 100% 31%, 97% 46%, 100% 61%, 98% 78%, 100% 100%, 83% 98%, 69% 100%, 54% 97%, 41% 100%, 27% 96%, 13% 100%, 0 97%, 3% 81%, 0 66%, 2% 51%, 0 35%, 3% 18%);
    box-shadow: 0 18px 44px rgba(33, 56, 91, 0.12);
}

.text-link {
    color: var(--accent);
    font-weight: 700;
}

.banner-slot {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--surface);
}

.banner-link {
    display: block;
}

.banner-slot img {
    width: 100%;
    height: auto;
}

.banner-slot--embed {
    padding: 12px;
}

.banner-slot--embed iframe,
.banner-slot--embed img,
.banner-slot--embed script + * {
    max-width: 100%;
}

.banner-slot--fixed-728 {
    width: min(728px, 100%);
    margin-inline: auto;
}

.banner-slot--fixed-300 {
    width: min(300px, 100%);
    margin-inline: auto;
}

.banner-slot--fixed-728.banner-slot--embed,
.banner-slot--fixed-300.banner-slot--embed {
    padding: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slot--fixed-728.banner-slot--embed {
    min-height: 90px;
}

.banner-slot--fixed-300.banner-slot--embed {
    min-height: 250px;
}

.footer-mid-banner {
    margin: 0 auto 18px;
    width: min(var(--site-max), calc(100% - 32px));
}

.panel,
.detail-card,
.metric-card,
.form-panel,
.table-wrap,
.category-editor__card {
    background: var(--panel-bg) !important;
}

.category-card {
    background: var(--card-bg) !important;
}

.ad-card {
    background: var(--ad-card-bg) !important;
}

.site-header__banner {
    padding-bottom: 18px;
}

.notice {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.notice--success {
    background: #ecfbf3;
    border-color: rgba(31, 157, 101, 0.25);
}

.notice--error {
    background: #fff1f3;
    border-color: rgba(242, 91, 122, 0.25);
}

.notice--info {
    background: #eef5ff;
    border-color: rgba(29, 126, 242, 0.25);
}

.form-panel,
form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field,
.field--full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.conditional-section[hidden] {
    display: none !important;
}

.checkbox-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.checkbox-line input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

label {
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="color"],
input[type="file"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-help,
.error-list {
    margin-top: 10px;
    color: var(--muted);
}

.error-list {
    padding-left: 20px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    background: var(--surface-alt);
}

.status--approved,
.status--published {
    background: #ecfbf3;
    color: #15784d;
}

.status--pending,
.status--new {
    background: #fff5e8;
    color: #a45b0b;
}

.status--rejected,
.status--blocked,
.status--closed {
    background: #fff1f3;
    color: #bf3552;
}

.admin-layout {
    display: grid;
    gap: 24px;
}

.admin-section h2,
.admin-section h3 {
    margin-top: 0;
}

.admin-toolbar,
.inline-actions,
.sub-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.theme-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.swatch {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface-alt);
}

.category-editor {
    display: grid;
    gap: 16px;
}

.category-editor__card {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.88);
}

.icon-choice {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 10px;
}

.icon-choice img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--surface-alt);
    padding: 6px;
}

.subcategory-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px dashed var(--border);
}

.site-footer {
    padding: 18px 0 42px;
}

.footer-banners {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1024px) {
    .hero,
    .two-col {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-header__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-header {
        position: static;
    }

    .page-shell,
    .site-header__banner,
    .site-header__inner,
    .footer-banners,
    .site-footer__inner {
        width: min(var(--site-max), calc(100vw - 20px));
    }

    .hero,
    .panel,
    .admin-section,
    .metric-card,
    .ad-card,
    .category-card,
    .detail-card {
        border-radius: 22px;
        padding: 20px;
    }

    .form-grid,
    .subcategory-item,
    .footer-banners {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .site-nav,
    .site-header__actions {
        gap: 8px;
    }

    .site-header__actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        background: var(--surface);
        color: var(--text);
        border: 1px solid var(--border);
        min-height: 42px;
        padding: 0 16px;
        border-radius: 12px;
    }

    .site-header__panel {
        display: none;
        width: 100%;
        order: 4;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .site-header.is-mobile-open .site-header__panel {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .site-header.is-mobile-open .site-nav {
        display: flex;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        width: 100%;
        text-align: left;
    }

    .site-header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header__actions .button,
    .site-header__actions .lang-switch {
        width: 100%;
        justify-content: center;
    }
}
.ad-card {
    overflow: hidden;
    isolation: isolate;
}

.ad-card--notebook {
    border-radius: 16px !important;
    border: 1px solid rgba(104, 146, 190, 0.22) !important;
    box-shadow: 0 20px 40px rgba(39, 76, 119, 0.08) !important;
    background:
        linear-gradient(to right, transparent 0 56px, rgba(225, 72, 72, 0.42) 56px 59px, transparent 59px 100%),
        repeating-linear-gradient(
            to bottom,
            #fffef8 0 31px,
            rgba(92, 134, 179, 0.28) 31px 33px
        );
    background-color: #fffef8 !important;
}

.ad-card--notebook::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 22px;
    width: 10px;
    background:
        radial-gradient(circle, rgba(94, 138, 180, 0.3) 0 4px, transparent 4px) center 18px / 10px 52px repeat-y;
    opacity: 0.9;
    pointer-events: none;
}

.ad-card--folded-corner {
    border-radius: 18px !important;
    border: 1px solid rgba(133, 162, 192, 0.28) !important;
    background: linear-gradient(180deg, #fffdf8 0%, #f7efe1 100%) !important;
    box-shadow: 0 22px 38px rgba(83, 58, 26, 0.14) !important;
}

.ad-card--folded-corner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 104px;
    height: 104px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 49%, #e8dac1 49% 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    box-shadow: -12px 12px 22px rgba(95, 70, 34, 0.18);
    z-index: 1;
}

.ad-card--folded-corner::after {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0 20%, #d4b686 20% 100%);
    box-shadow: 0 2px 10px rgba(55, 37, 16, 0.2);
    z-index: 2;
}

.ad-card--torn-paper {
    background: linear-gradient(180deg, #fffdfa 0%, #f7f2e8 100%) !important;
    box-shadow: 0 20px 34px rgba(39, 76, 119, 0.12) !important;
}

.ad-card--torn-paper::before {
    content: '';
    position: absolute;
    inset: auto 6% -12px 6%;
    height: 22px;
    background: radial-gradient(circle at 12px 0, rgba(234, 223, 204, 0.95) 0 12px, transparent 13px) 0 0 / 28px 22px repeat-x;
    opacity: 0.95;
    pointer-events: none;
}

.ad-card--sticker-note {
    border-radius: 18px !important;
    background: linear-gradient(180deg, #fff6b8 0%, #ffe98a 100%) !important;
    border: 1px solid rgba(196, 160, 45, 0.24) !important;
    box-shadow: 0 18px 32px rgba(138, 108, 19, 0.18) !important;
    transform: rotate(-0.8deg) !important;
}

.ad-card--sticker-note::before,
.ad-card--sticker-note::after {
    content: '';
    position: absolute;
    top: 10px;
    width: 68px;
    height: 18px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(140, 140, 140, 0.16);
    box-shadow: 0 4px 10px rgba(82, 82, 82, 0.08);
}

.ad-card--sticker-note::before {
    left: 22px;
    transform: rotate(-8deg);
}

.ad-card--sticker-note::after {
    right: 22px;
    transform: rotate(7deg);
}

.ad-card--poster-frame {
    border-radius: 18px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
        linear-gradient(135deg, #2f5b88 0%, #86a9c8 100%) !important;
    border: 6px double rgba(47, 91, 136, 0.52) !important;
    box-shadow: 0 20px 34px rgba(39, 76, 119, 0.14) !important;
}

.ad-card--poster-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(47, 91, 136, 0.35);
    border-radius: 10px;
    pointer-events: none;
}

.ad-card--telegram-card {
    border-radius: 22px !important;
    border: 1px solid rgba(80, 144, 209, 0.24) !important;
    background:
        radial-gradient(circle at top right, rgba(124, 198, 255, 0.26), transparent 28%),
        linear-gradient(180deg, #f8fdff 0%, #edf7ff 100%) !important;
    box-shadow: 0 18px 32px rgba(36, 104, 170, 0.12) !important;
}

.ad-card--telegram-card::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, #a6e2ff 0 20%, #2aabee 21% 100%);
    box-shadow: 0 6px 14px rgba(42, 171, 238, 0.22);
}

.ad-card--telegram-card::after {
    content: '';
    position: absolute;
    top: 34px;
    left: 72px;
    right: 22px;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 171, 238, 0.36), transparent 72%);
    pointer-events: none;
}

.ad-card--telegram-card h1,
.ad-card--telegram-card h2,
.ad-card--telegram-card h3 {
    padding-left: 56px;
}

.ad-card--telegram-card .muted:first-of-type {
    position: relative;
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 18px 18px 18px 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(42, 171, 238, 0.14);
}

.ad-card--telegram-card .chip {
    border-radius: 999px;
}

.ad-card--stamp-notice {
    border-radius: 18px !important;
    border: 2px solid rgba(120, 86, 55, 0.22) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
        linear-gradient(135deg, #f5efe3 0%, #fffaf0 100%) !important;
    box-shadow: 0 20px 34px rgba(97, 71, 42, 0.14) !important;
}

.ad-card--stamp-notice::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(149, 111, 75, 0.28);
    border-radius: 10px;
    pointer-events: none;
}

.ad-card--stamp-notice::after {
    content: 'TASDIQLANGAN';
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 106px;
    height: 106px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 4px double rgba(175, 53, 53, 0.65);
    color: rgba(175, 53, 53, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transform: rotate(-14deg);
    background: radial-gradient(circle, transparent 46%, rgba(175, 53, 53, 0.08) 47% 100%);
    box-shadow: 0 8px 18px rgba(175, 53, 53, 0.12);
    pointer-events: none;
}

.ad-card--stamp-notice h1,
.ad-card--stamp-notice h2,
.ad-card--stamp-notice h3 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 720px) {
    .brand {
        gap: 12px;
    }

    .brand__mark {
        width: 66px;
        height: 66px;
        border-radius: 18px;
    }

    .brand__mark img {
        width: 66px;
        height: 66px;
    }

    .brand__copy strong {
        font-size: 1.05rem;
    }

    .brand__copy small {
        font-size: 0.72rem;
    }
}
