.cat-nav-wrap,
.lang-wrap {
    overflow-x: visible;
    display: flex;
}
.ad-label,
.date-line,
.footer-bottom,
.masthead-inner,
.report-footer-note,
.report-header,
.subscribe-note,
.subscribe-title {
    text-align: center;
}
.nav-item,
.toast {
    white-space: nowrap;
}
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 1rem;
    line-height: 1.55;
    background: #fff;
    color: #1e1e1e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100%;
}
@supports (font-variation-settings: normal) {
    body {
        font-family: InterVariable, sans-serif;
    }
}
:root {
    --bg-body: #ffffff;
    --surface: #ffffff;
    --card-bg: #ffffff;
    --border-light: #eef2f0;
    --border-medium: #e2e8e4;
    --text-primary: #171717;
    --text-secondary: #4b5563;
    --text-muted: #8b9a8b;
    --accent: #0f7b4b;
    --accent-hover: #0a5f3a;
    --accent-soft: #e9f5ef;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.02), 0 6px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.03), 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.06);
    --radius-card: 20px;
    --radius-element: 40px;
    --radius-sm: 12px;
}
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}
.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
}
.masthead {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 1.5rem 1.5rem;
}
.masthead-inner {
    max-width: 780px;
    margin: 0 auto;
}
.masthead-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}
.masthead-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.lang-btn,
.nav-item {
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}
.hero-description,
.lang-btn,
.nav-item {
    color: var(--text-secondary);
}
.masthead-title em {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}
.hero-description {
    font-size: 0.95rem;
    max-width: 620px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
}
.cat-nav-wrap {
    overflow-x: visible;
    padding-bottom: 0.5rem;
}
.nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-width: 220px;
}
.nav-item {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-element);
    background: #fff;
    border: 1px solid var(--border-medium);
}
.lang-btn:hover,
.nav-item:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}
.copy-btn:hover,
.share-row a:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.lang-btn.active,
.nav-item.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.lang-wrap {
    display: flex;
    justify-content: center;
    overflow-x: visible;
}
.lang-selector-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 180px;
}
.lang-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-element);
    background: 0 0;
    border: 1px solid var(--border-medium);
    font-family: inherit;
}
.ad-label,
.date-prefix {
    font-weight: 600;
    text-transform: uppercase;
}
.three-col {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 1.5rem;
    align-items: start;
}
.ad-col,
.date-line {
    flex-direction: column;
}
@media (max-width: 1100px) {
    .three-col {
        grid-template-columns: 140px 1fr 140px;
    }
}
@media (max-width: 860px) {
    .three-col {
        grid-template-columns: 1fr;
    }
    .ad-col {
        display: none;
    }
}
.ad-col {
    display: flex;
    gap: 1.25rem;
}
.ad-unit {
    background: #fafcfa;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.ad-sticky {
    position: sticky;
    top: 1.5rem;
}
.ad-label {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: #f9fbf8;
    padding: 0.35rem;
    border-bottom: 1px solid var(--border-light);
}
.ad-placeholder {
    aspect-ratio: 9/16;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: #fefefc;
}
.content-area {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 2rem 2rem 1.8rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.2s;
}
.date-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.date-line > * {
    display: block;
}
.date-prefix {
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    color: var(--accent);
}
.date-strong {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: none;
}
.reading-time {
    background: var(--accent-soft);
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--accent);
    display: inline-block;
}
.copy-btn,
.share-row a,
.subscribe-form {
    background: var(--surface);
}
.report-body h2,
.report-body h3,
.report-body strong,
.report-header {
    color: var(--text-primary);
}
.report-header {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 1rem 0;
    line-height: 1.2;
}
.date-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.date-line .date-dot {
    display: none;
}
.date-line .reading-time,
.date-line > span,
.date-line > strong {
    display: inline-block;
}
.section-rule {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 1.5rem 0;
}
.report-body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.report-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.8rem 0 0.75rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--accent-soft);
}
.report-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.2rem 0 0.5rem;
}
.report-body p {
    margin-bottom: 1rem;
}
.report-body ol,
.report-body ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}
.report-body li {
    margin-bottom: 0.3rem;
}
.report-body strong {
    font-weight: 700;
}
.report-footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.share-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.copy-btn,
.share-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
}
.share-row svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.2s;
}
.subscribe-row input[type="email"],
.subscribe-row select {
    padding: 0.7rem 1rem;
    background: #fff;
    color: var(--text-primary);
    font-family: inherit;
    outline: 0;
}
.share-row a:hover svg {
    fill: white;
}
#share-twitter:hover {
    background: #000;
    border-color: #000;
}
#share-telegram:hover {
    background: #229ed9;
    border-color: #229ed9;
}
#share-reddit:hover {
    background: #ff4500;
    border-color: #ff4500;
}
#share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}
#share-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}
#share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}
.copy-btn {
    font-size: 1.2rem;
}
.copy-btn:hover {
    color: #fff;
}
.subscribe-wrap {
    max-width: 720px;
    margin: 2.5rem auto 0;
    padding: 0 0.75rem;
}
.subscribe-form {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.subscribe-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.subscribe-row {
    display: flex;
    justify-content: center; 
    align-items: center;    
    gap: 10px;  
}
.subscribe-row input[type="email"] {
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-element);
    transition: border 0.2s;
}
.cat-select:focus,
.lang-select:focus,
.subscribe-row input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(15, 123, 75, 0.1);
}
.subscribe-row select {
    font-size: 0.85rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-element);
    cursor: pointer;
}
.subscribe-row button[type="submit"] {
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: var(--radius-element);
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.1s;
}
.reload-btn:hover,
.subscribe-row button[type="submit"]:hover {
    background: var(--accent-hover);
}
.subscribe-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}
footer {
    background: #fafbf9;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    padding: 2rem 1.25rem 1.8rem;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    transition:
        background 0.2s,
        color 0.2s;
}
.footer-links a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.footer-author,
.footer-container > span:last-of-type {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-bottom {
    margin-top: 0.25rem;
}
#modal-body a,
.footer-author a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
#modal-body p,
.modal-close {
    color: var(--text-secondary);
}
#modal-body a:hover,
.footer-author a:hover {
    text-decoration: underline;
}
.footer-container > span:last-of-type {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.open {
    display: flex;
}
.modal {
    background: var(--surface);
    border-radius: 28px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1.8rem 1.8rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: 0.2s modalFadeIn;
}
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-close {
    float: right;
    background: var(--border-light);
    border: none;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.modal-close:hover {
    background: var(--accent);
    color: #fff;
}
.modal h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}
#modal-body p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.skeleton-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}
.skeleton {
    background: linear-gradient(90deg, #ecece8 0, #f5f5f2 50%, #ecece8 100%);
    background-size: 200% 100%;
    animation: 1.2s linear infinite shimmer;
    border-radius: 8px;
    height: 14px;
}
@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}
.error-msg {
    background: #fefaf5;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    font-size: 0.9rem;
    color: #3b2e24;
}
.error-msg strong {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
}
.reload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1.1rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.reload-btn::before {
    content: "↻";
    font-size: 1.1rem;
    transition: transform 0.3s;
}
.reload-btn:hover::before {
    transform: rotate(180deg);
}
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1e1e1e;
    color: #f0f0f0;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s,
        transform 0.2s;
    z-index: 9999;
    box-shadow: var(--shadow-md);
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f0f2ef;
    border-radius: 12px;
}
::-webkit-scrollbar-thumb {
    background: #cbd5cf;
    border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
* {
    scrollbar-width: thin;
    scrollbar-color: #cbd5cf #f0f2ef;
}
@media (max-width: 860px) {
    .page-wrapper {
        padding: 1rem 1rem 2rem;
    }
    .content-area,
    .masthead {
        padding: 1.2rem 1rem;
    }
    .content-area {
        border-radius: 18px;
    }
    .nav-item {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    .lang-btn {
        padding: 0.35rem 0.8rem;
    }
    .report-header {
        margin-top: 0.25rem;
    }
}
@media (max-width: 640px) {
    .subscribe-row input[type="email"],
    .subscribe-row select {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        height: 36px;
        min-height: 36px;
    }
    .subscribe-row button[type="submit"] {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        height: 36px;
        min-height: 36px;
    }
    .subscribe-form {
        padding: 1rem;
    }
    .subscribe-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    .subscribe-row button,
    .subscribe-row input,
    .subscribe-row select {
        width: 100%;
        border-radius: var(--radius-sm);
    }
    .date-line {
        gap: 0.2rem;
        margin-bottom: 0.75rem;
    }
    .date-prefix {
        font-size: 0.65rem;
    }
    .date-strong {
        font-size: 0.75rem;
    }
    .reading-time {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
    .report-header {
        font-size: 1.5rem;
        margin: 0.75rem 0;
    }
}
@media (max-width: 480px) {
    .copy-btn,
    .share-row a {
        width: 34px;
        height: 34px;
    }
    .toast {
        white-space: normal;
        text-align: center;
        max-width: 80vw;
    }
    .subscribe-row input[type="email"],
    .subscribe-row select {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
        height: 34px;
        min-height: 34px;
    }
    .subscribe-row button[type="submit"] {
        padding: 0.35rem 0.9rem;
        font-size: 0.75rem;
        height: 34px;
        min-height: 34px;
    }
}
.report-body *,
iframe,
img,
svg,
video {
    max-width: 100%;
    height: auto;
}
.content-area,
.lang-selector-group,
.masthead,
.nav-inner,
.page-wrapper,
.three-col,
body,
footer {
    overflow-x: hidden;
}
.lang-btn,
.nav-item,
.reload-btn,
button {
    user-select: none;
}
a,
button {
    touch-action: manipulation;
}
.cat-select,
.lang-select {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-element);
    background: var(--surface);
    color: var(--text-primary);
    cursor: pointer;
    outline: 0;
    transition: 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.2rem;
}
.cat-select:hover,
.lang-select:hover {
    border-color: var(--accent);
    background-color: var(--accent-soft);
}
.cat-nav-wrap {
    justify-content: center;
    margin: 1rem 0 0.25rem;
}
.lang-wrap {
    justify-content: center;
    margin: 0.75rem 0 1.5rem;
}
@media (max-width: 640px) {
    .lang-selector-group,
    .nav-inner {
        width: 100%;
    }
    .cat-select,
    .lang-select {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.5rem 2rem 0.5rem 0.9rem;
    }
}

@media (min-width: 641px) {
    .cat-nav-wrap,
    .lang-wrap {
        display: inline-block;
        width: auto;
        margin: 0;
    }
    
    .nav-inner,
    .lang-selector-group {
        min-width: auto;
        width: auto;
    }
    
    .dropdowns-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0 1.5rem;
        flex-wrap: wrap;
    }
    
    .cat-nav-wrap,
    .lang-wrap {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .cat-nav-wrap {
        margin: 0.5rem 0 0.25rem;
    }
    
    .lang-wrap {
        margin: 0.25rem 0 0.5rem;
    }
    
    .nav-inner,
    .lang-selector-group {
        width: 100%;
    }
    
    .cat-select,
    .lang-select {
        width: 100%;
    }
}

.donate-wrap {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0 0.75rem;
}
.donate-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  text-align: center;
}
.donate-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.donate-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.donate-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.donate-qr {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}
.donate-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.donate-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.donate-address-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.donate-address {
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--accent-soft);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  word-break: break-all;
}
.donate-copy-btn {
  background: var(--surface);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0;
}
.donate-copy-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 480px) {
  .donate-card { padding: 1rem; }
  .donate-right { align-items: center; }
  .donate-address { font-size: 0.7rem; }
}

.archive-wrap {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.archive-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-align: center;
}
.archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.archive-item {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-element);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.archive-item:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.archive-item--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}