/*
Theme Name: VortexBrief
Theme URI: https://vortexbrief.com
Author: VortexBrief Editorial Team
Author URI: https://vortexbrief.com
Description: A premium, SEO and AdSense-friendly news magazine theme for VortexBrief.
Version: 2.2.0
Requires at least: 5.8
Tested up to: 6.5
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vortexbrief
Tags: news, magazine, responsive, custom-menu, featured-images
*/

/* ================================================================
   1. GLOBAL RESET & BASE STYLES
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-red:  #cc0000;
  --dark-red:     #990000;
  --bg-color:     #f4f5f7;
  --white:        #ffffff;
  --text-dark:    #111111;
  --text-body:    #222222;
  --text-muted:   #666666;
  --text-light:   #999999;
  --border:       #e2e8f0;
  --max-width:    1160px;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-color);
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary-red);
}

ul, ol {
  list-style: none;
}

/* ================================================================
   2. SITE WRAPPER & CONTAINERS
   ================================================================ */
.site-wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  overflow-x: hidden;
}

.vb-homepage {
  background: var(--bg-color);
  min-height: 80vh;
  padding-bottom: 3rem;
}

.vb-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0 1.25rem;
  box-sizing: border-box;
}

/* ================================================================
   3. HEADER & LOGO
   ================================================================ */
.top-header {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.brand-logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
}

.logo-vortex {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: -1.5px;
}

.logo-brief {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-red);
  letter-spacing: -1.5px;
}

.header-actions-mobile {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.nav-hamburger {
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px 8px;
}

/* ================================================================
   4. NAVIGATION BAR
   ================================================================ */
.main-nav {
  background: var(--white);
  border-bottom: 3px solid var(--primary-red);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li a {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.15s ease;
}

.nav-links li a:hover,
.nav-links li.current-menu-item > a,
.nav-links li.current-cat > a {
  color: var(--primary-red);
  border-bottom-color: var(--primary-red);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-trigger, .icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}

.search-trigger:hover, .icon-btn:hover {
  color: var(--primary-red);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  padding-top: 15vh;
  justify-content: center;
}

.search-inner {
  background: #ffffff;
  width: 90%;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
}

.search-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
}

.search-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ================================================================
   5. BREAKING NEWS TICKER
   ================================================================ */
.ticker-strip {
  background: var(--primary-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}

.ticker-badge {
  background: var(--dark-red);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-content-wrap {
  overflow: hidden;
  flex: 1;
  padding: 0 1rem;
}

.ticker-scroll {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   6. SECTION HEADERS (RED BAR)
   ================================================================ */
.vb-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--primary-red);
  margin: 2rem 0 1.25rem 0;
}

.vb-section-label {
  background: var(--primary-red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.4rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.vb-see-all {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================================================================
   7. HERO CLUSTER (CNN STYLE)
   ================================================================ */
.vb-hero-cluster {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.vb-hero-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111111;
  text-decoration: none;
}

.vb-hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.82;
  transition: transform 0.4s ease;
}

.vb-hero-main:hover .vb-hero-img {
  transform: scale(1.03);
}

.vb-hero-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: #ffffff;
}

.vb-cat-badge {
  display: inline-block;
  background: var(--primary-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  border-radius: 2px;
}

.vb-hero-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.3px;
}

.vb-hero-excerpt {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Secondary Stack */
.vb-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vb-hero-secondary {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  flex: 1;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111111;
  text-decoration: none;
}

.vb-sec-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.vb-hero-secondary:hover .vb-sec-img {
  opacity: 0.9;
}

.vb-sec-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  padding: 0.85rem;
  color: #ffffff;
}

.vb-sec-cat {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ff7777;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 2px;
}

.vb-sec-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================================
   8. NEWS CARDS & GRIDS
   ================================================================ */
.vb-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vb-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.vb-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.vb-card-img-wrap {
  height: 165px;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
}

.vb-card-img-sm {
  height: 145px;
}

.vb-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vb-card:hover .vb-card-img {
  transform: scale(1.05);
}

.vb-card-body {
  padding: 0.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vb-card-cat {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary-red);
  letter-spacing: 0.8px;
  margin-bottom: 0.35rem;
  display: block;
}

.vb-card-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 0.4rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vb-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.vb-card-date {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: auto;
}

.vb-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #cbd5e1; color: #94a3b8; font-size: 1.8rem;
}

/* ================================================================
   9. CATEGORY SECTIONS
   ================================================================ */
.vb-cat-section {
  margin-bottom: 2.25rem;
}

.vb-cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.25rem;
}

.vb-cat-hero-card .vb-cat-hero-img-wrap {
  height: 210px;
  overflow: hidden;
}

.vb-cat-hero-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 0.4rem 0;
}

/* ================================================================
   10. ARCHIVE / CATEGORY PAGE
   ================================================================ */
.vb-archive-header {
  background: #ffffff;
  border-bottom: 3px solid var(--primary-red);
  padding: 1rem 0;
}

.vb-archive-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0;
}

.vb-archive-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.vb-breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: flex;
  gap: 0.4rem;
}

.vb-breadcrumb a {
  color: var(--primary-red);
  font-weight: 700;
}

.vb-archive-body {
  padding-bottom: 3rem;
}

.vb-archive-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.vb-archive-hero:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.vb-archive-hero-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #111111;
}

.vb-archive-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vb-archive-hero:hover .vb-archive-hero-img {
  transform: scale(1.03);
}

.vb-latest-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary-red);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vb-archive-hero-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.vb-archive-hero-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0.5rem 0 1rem 0;
}

.vb-archive-hero-excerpt {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.vb-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vb-pagination {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem 0;
}

.vb-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.vb-pagination .page-numbers.current,
.vb-pagination .page-numbers:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #ffffff;
}

/* ================================================================
   11. SINGLE ARTICLE PAGE
   ================================================================ */
.article-body p {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.72;
  color: #1a1a1a;
  margin-bottom: 1.15rem;
}

.article-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d0d;
  margin: 2rem 0 0.75rem 0;
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0d0d0d;
  margin: 1.5rem 0 0.6rem 0;
}

.article-body ul, .article-body ol {
  margin: 0 0 1.15rem 1.5rem;
  line-height: 1.72;
}

.article-body blockquote {
  border-left: 4px solid var(--primary-red);
  margin: 1.5rem 0;
  padding: 0.5rem 1.25rem;
  font-style: italic;
  font-size: 1.1rem;
  color: #333333;
  background: #fafafa;
}

.article-body a {
  color: var(--primary-red);
  text-decoration: underline;
}

.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

/* ================================================================
   12. PAGE & POLICY TEMPLATES
   ================================================================ */
.entry-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.1rem;
}

.entry-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1.75rem 0 0.7rem 0;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 0.3rem;
}

.entry-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.4rem 0 0.5rem 0;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 1.1rem 1.5rem;
  line-height: 1.75;
}

.entry-content a {
  color: var(--primary-red);
  text-decoration: underline;
}

.page-card-container {
  max-width: 860px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ================================================================
   13. FOOTER
   ================================================================ */
.light-footer {
  background: #111111;
  color: #cccccc;
  padding: 3rem 2rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.light-footer h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #333333;
}

.light-footer ul li {
  margin-bottom: 0.5rem;
}

.light-footer ul li a {
  color: #aaaaaa;
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

.light-footer ul li a:hover {
  color: var(--primary-red);
}

/* ================================================================
   ██████████  MEDIA QUERIES — TABLET (max-width: 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .top-header { padding: 0.85rem 1.25rem; }
  .nav-container { padding: 0 1.25rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  
  .vb-news-grid { grid-template-columns: repeat(2, 1fr); }
  .vb-cat-grid { grid-template-columns: 1fr 1fr; }
  .vb-cat-hero-card { grid-column: span 2; }
  .vb-cat-hero-card .vb-cat-hero-img-wrap { height: 180px; }
}

/* ================================================================
   ██████████  MEDIA QUERIES — MOBILE (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {

  /* Header */
  .top-header {
    padding: 0.75rem 1rem;
  }

  .header-actions-mobile {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .logo-vortex, .logo-brief {
    font-size: 1.95rem;
  }

  /* Navigation — Full Dropdown */
  .main-nav {
    border-bottom: 2px solid var(--primary-red);
  }

  .nav-container {
    padding: 0;
    min-height: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    padding: 0;
    border-top: 1px solid var(--border);
  }

  .nav-links.nav-open {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    border-left: 4px solid transparent;
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .nav-links li a:hover,
  .nav-links li.current-menu-item > a {
    border-left-color: var(--primary-red);
    border-bottom-color: #f0f0f0;
    color: var(--primary-red);
    background: #fff8f8;
  }

  /* Hero Cluster Stack */
  .vb-hero-cluster {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vb-hero-main {
    min-height: 270px;
  }

  .vb-hero-title {
    font-size: 1.3rem;
  }

  .vb-hero-excerpt {
    display: none;
  }

  .vb-hero-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .vb-hero-secondary {
    min-height: 130px;
  }

  /* News Grids */
  .vb-news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vb-cat-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vb-cat-hero-card {
    grid-column: span 1;
  }

  .vb-cat-hero-card .vb-cat-hero-img-wrap {
    height: 190px;
  }

  /* Archive Hero */
  .vb-archive-hero {
    grid-template-columns: 1fr;
  }

  .vb-archive-hero-img-wrap {
    min-height: 220px;
  }

  .vb-archive-hero-content {
    padding: 1.25rem;
  }

  .vb-archive-hero-title {
    font-size: 1.25rem;
  }

  .vb-archive-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Container */
  .vb-container {
    padding: 1rem 0.85rem 0 0.85rem;
  }

  /* Footer */
  .light-footer {
    padding: 2rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-card-container {
    padding: 1.25rem 1rem;
    margin: 1rem 0.75rem;
  }
}

/* ================================================================
   ██████████  MEDIA QUERIES — SMALL MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
  .logo-vortex, .logo-brief {
    font-size: 1.7rem;
  }

  .vb-hero-main {
    min-height: 230px;
  }

  .vb-hero-title {
    font-size: 1.15rem;
  }

  .vb-archive-title {
    font-size: 1.35rem;
  }
}
