/* === Local Font: Satoshi === */
@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES (MOBILE-FIRST DEFAULT)
   ============================================================ */
:root {
  /* Colors */
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #777777;
  --white: #ffffff;
  --black: #000000;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;

  /* Typography (Mobile-first / HP) */
  --font-size-body: 1rem;    /* 16px */
  --font-size-h1: 2rem;      /* 32px */
  --font-size-h2: 1.5rem;    /* 24px */
  --font-size-h3: 1.25rem;   /* 20px */
  --line-height-body: 1.75;
  --line-height-heading: 1.3;

  /* Borders */
  --border-radius: 4px;
  --border-width: 1px;

  /* Layout */
  --max-width: 60rem; /*960px*/ /*75rem;*/ /* 1200px */
  --header-height: 3.75rem; /* 60px */
  --max-ch: 65ch;
  /* Font Family */
  --font-stack: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                "Helvetica Neue", Arial, sans-serif;
}

/* ============================================================
   DESKTOP SCALE-UP (Tablet & Desktop ≥768px)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --font-size-body: 1.125rem; /* 18px */
    --font-size-h1: 2.5rem;     /* 40px */
    --font-size-h2: 1.75rem;    /* 28px */
    --font-size-h3: 1.375rem;   /* 22px */
  }
}

/* ============================================================
   BASE STYLES
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-stack);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAPHY ala Medium
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

/* Artikel teks nyaman dibaca */
p {
  margin-bottom: var(--spacing-sm);
  /*max-width: var(--max-ch);*/ /* limit ala Medium */
}

/* subheading ikut batasan teks */
h2, h3 {
  max-width: var(--max-ch);
  margin-left: 0; /*auto;*/
  margin-right: auto;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--primary-color); }

/* ============================================================
   LAYOUT & CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width); /* 1200px */
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}
.article-content {
  max-width: max-content; /* reading width ala Medium */
  margin: 0 auto;
}

.section-padding { padding: var(--spacing-xl) 0; }
.bg-light { background-color: var(--light-gray); }
.text-center { text-align: center; }

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-h2);
}

/* ============================================================
   BRAND LOGO
   ============================================================ */
.hero-root-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.4rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  padding: 0.25rem;
  backdrop-filter: blur(4px);
}
.hero-root-brand img { width: 3rem; height: auto; }

@media (min-width: 769px) {
  .hero-root-brand { top: 1.25rem; left: 0.6rem; }
  .hero-root-brand img { width: 6rem; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-image { width: 100%; height: auto; position: relative; }
.hero-image img { width: 100%; height: auto; /*aspect-ratio: 16/9;*/}

.hero-article img {
    width: var(--max-width);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Desktop */
@media (min-width: 768px) {
  .hero-image img {
     width: 100%; height: auto;
    /*aspect-ratio: 12/5;*/ /* 1920/800 = 2.4 */
  }
}

/* ============================================================
   SHORTCUT GRID
   ============================================================ */
.shortcuts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  transform: translateY(-0.4rem);
  z-index: 1;
}
.shortcut {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 0.6rem;
  color: #111;
  font-weight: 600;
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .shortcuts { max-width: 57.5rem; margin: 0 auto; border-radius: 0.75rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cta-button, .button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}
.cta-button:hover, .button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}
.cta-button.secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.cta-button.secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}
.article-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.article-card:hover { transform: translateY(-4px); }
.article-card h3 { padding: var(--spacing-md); font-size: var(--font-size-h3); }
.article-excerpt {
  padding: 0 var(--spacing-md);
  color: var(--dark-gray);
  margin-bottom: var(--spacing-sm);
}
.article-meta {
  padding: var(--spacing-md);
  border-top: 1px solid var(--medium-gray);
  color: var(--dark-gray);
  font-size: 0.875rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  font-size: calc(var(--font-size-body) * 0.9);
}
.footer-section ul { padding-left: 0; list-style: none; }
.footer-section h4 { color: var(--white); margin-bottom: var(--spacing-sm); }
.footer-section p, .footer-section li {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-xs);
}
.footer-section a { color: var(--medium-gray); }
.footer-section a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--medium-gray);
  font-size: 0.875rem;
}

.footer-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 10px 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info img {
  width: 20px;
  height: auto;
  margin-right: 10px;
}



/* ============================================================
   RESPONSIVE LAYOUT
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 var(--spacing-md); }
  .article-grid { grid-template-columns: repeat(2,1fr); }
  .footer-content { grid-template-columns: repeat(2,1fr); font-size: calc(var(--font-size-body) * 0.9);}
}
@media (min-width: 1024px) {
  .article-grid { grid-template-columns: repeat(3,1fr); }
  .footer-content { /*grid-template-columns: repeat(3,1fr);*/ grid-template-columns: 1.5fr 1fr 1fr; font-size: calc(var(--font-size-body) * 0.9);}
  
  
}

/* ============================================================
   UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-contrast: high) {
  .cta-button { border: 2px solid currentColor; }
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.section-divider {
  text-align: center;
  margin: 3rem 0;
  font-weight: 600;
  color: #6b7280;
}
.text-section {
  padding: var(--spacing-sm) 0;
  background-color: var(--white);
  color: var(--text-color);
}
.text-section article {
  font-size: var(--font-size-body);
  line-height: 1.8;
  color: var(--text-color);
}
.text-section article h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
}
.text-section article p {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-body);
  color: var(--dark-gray);
}
.text-section article ul,
.text-section article ol {
  margin-left: 0;
  margin-bottom: var(--spacing-md);
  padding-left: 0;
}
.text-section article li { margin-bottom: var(--spacing-xs); }

/* ============================================================
   LISTS
   ============================================================ */
.non-list { list-style: none; margin: 0; padding: 0; }
ul.non-list li {
  position: relative;
  margin-bottom: 0.8em;
  /*padding-left: 1.25rem;*/
}
ul.general-list { list-style: none; /*padding-left: 1.5em;*/ margin: 0; }
ul.general-list li {
  position: relative;
  margin-bottom: 0.8em;
  padding-left: 1.25rem;
}
ul.general-list li::before {
  content: "►";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.95rem;
}

/* ============================================================
   MISC
   ============================================================ */
hr { overflow: visible; box-sizing: content-box; height: 0; }

#testimoni { padding: 2rem 1rem; text-align: center; }
/*
.client-logos {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 1.5rem; margin-top: 1.5rem;
}

.client-logos img { width: 9.375rem; height: auto; }*/

/* MOBILE FIRST: Default flow (vertical stack) */
.client-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: var(--spacing-sm);
}

.client-logos img {
  width: 150px;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.client-logos p {
  text-align: center;
  margin: 1rem 0 0;
  color: #666;
  font-style: italic;
}

/* Desktop: 3 images in a single row */
@media (min-width: 768px) {
  .client-logos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: var(--max-ch);
  }
  
  .client-logos p {
    flex-basis: 100%;
    margin-top: 2rem;
  }
}

.wa-btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  background: #25d366;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

blockquote {
  font-style: italic;
  color: #555;
  border-left: 4px solid #1a8917;
  margin: 1.5em 0;
  padding: 0.5em 1em;
  background: #fafafa;
  border-radius: 6px;
}


/* Medium Style Separators */
.medium-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
    margin: 3rem auto;
    width: 80%;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .medium-separator {
        width: 90%;
        margin: 2rem auto;
    }
}

/*-- PRINT --*/
.print-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 10px;
}

/*=== Pricing Table Styles ===*/
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th {
    background: #2c3e50;
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table th:first-child {
    background: #34495e;
    text-align: left;
    width: 25%;
}

.pricing-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

/* === MODIFIKASI INI: Ganti jadi CLASS-BASED === */

/* Highlight Growth Column */
.pricing-table.growth-highlight th:nth-child(3),
.pricing-table.growth-highlight td:nth-child(3) {
    background: #fff3e0;
    border-left: 3px solid #ff9800;
    border-right: 3px solid #ff9800;
}

.pricing-table.growth-highlight th:nth-child(3) {
    background: #ff9800;
    color: white;
}

/* TAMBAHKIN: Highlight Pro Column */
.pricing-table.pro-highlight th:nth-child(4),
.pricing-table.pro-highlight td:nth-child(4) {
    background: #e8f5e9;
    border-left: 3px solid #4caf50;
    border-right: 3px solid #4caf50;
}

.pricing-table.pro-highlight th:nth-child(4) {
    background: #4caf50;
    color: white;
}

/* Price Styling */
.pricing-table .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
}

/* MODIFIKASI: Sesuaikan dengan class */
.pricing-table.growth-highlight td:nth-child(3) .price {
    color: #e65100;
}

.pricing-table.pro-highlight td:nth-child(4) .price {
    color: #2e7d32;
}

/* Feature Availability */
.pricing-table .available {
    color: #27ae60;
    font-weight: 600;
}

.pricing-table .not-available {
    color: #95a5a6;
    text-decoration: line-through;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.75rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .pricing-table .price {
        font-size: 1.1rem;
    }
}

/* Optional: Add icons */
.pricing-table .feature-check::before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
}

.pricing-table .feature-cross::before {
    content: "✗ ";
    color: #e74c3c;
}

@media print {
  body {
    margin: 0;
    padding: 0;
  }

  header,
  footer,
  nav,
  .no-print,
  button {
    display: none;
  }
}

/*===TESTIMONI==*/
.client-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.client-section {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.client-section img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 180px;
  height: auto;
}

.client-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.client-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.client-section ul li {
  margin-bottom: 0.4rem;
}

.client-section a.detail-link {
  display: block;
  font-size: 0.9rem;
  color: #0077cc;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.client-section a.cta-button {
  display: block;
  background-color: #00b14f;
  color: #fff;
  font-weight: bold;
  padding: 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 280px;
}

@media (min-width: 768px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*===consent====*/
.consent-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.consent-text a {
    color: var(--white);
    text-decoration: underline;
}

/* Mobile first approach */
@media (max-width: 768px) {
    .consent-text {
        font-size: 0.8rem;
    }
}


/* ============================================================
   ARTICLE NAVIGATION
   ============================================================ */
.article-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: 3rem auto;
  padding: 0 1rem;
  border-top: 1px solid #eaeaea;
  padding-top: 2rem;
}

.nav-previous,
.nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-next {
  text-align: right;
  align-items: flex-end;
}

.nav-label {
  font-size: 0.875rem;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.nav-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #242424;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-title:hover {
  color: #000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .article-navigation {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
    padding-top: 1.5rem;
  }
  
  .nav-next {
    text-align: left;
    align-items: flex-start;
  }
  
  .nav-title {
    font-size: 0.95rem;
  }
}

/* Empty state - ketika hanya satu navigation */
.article-navigation:has(.nav-previous:only-child) {
  grid-template-columns: 1fr;
  justify-items: flex-start;
}

.article-navigation:has(.nav-next:only-child) {
  grid-template-columns: 1fr;
  justify-items: flex-end;
}

@media (max-width: 768px) {
  .article-navigation:has(.nav-next:only-child) {
    justify-items: flex-start;
  }
}

/* ============================================================
   ARTICLE SHARE
   ============================================================ */
.article-share {
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.article-share p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.article-share a {
  color: var(--text-color);
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 0.75rem;
  justify-content: center;
}

.share-btn {
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  background: white;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  min-height: 44px; /* Touch friendly */
}

.share-btn:hover {
  border-color: #999;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Platform Colors - UMKM Focus */
.wa:hover { background: #25D366; color: white; border-color: #25D366; }
.telegram:hover { background: #0088cc; color: white; border-color: #0088cc; }
.fb:hover { background: #1877F2; color: white; border-color: #1877F2; }
.linkedin:hover { background: #0A66C2; color: white; border-color: #0A66C2; }
.copy:hover { background: #6c757d; color: white; border-color: #6c757d; }

/* Responsive */
@media (max-width: 768px) {
  .article-share {
    margin: 2rem auto;
    padding: 0 0.5rem;
  }
  
  .share-buttons {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
    gap: 0.5rem;
  }
  
  .share-btn {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
    min-height: 44px;
    gap: 0.25rem;
    flex-direction: column; /* Icon di atas text */
  }
  
  /* Perkecil gap untuk layout vertical */
  .share-btn::before {
    margin-bottom: 0.25rem;
  }
}

/* Untuk very small screens */
@media (max-width: 480px) {
  .share-buttons {
    grid-template-columns: 1fr; /* 1 kolom di very small mobile */
    gap: 0.5rem;
  }
  
  .share-btn {
    padding: 0.625rem 1rem;
    flex-direction: row; /* Kembali ke horizontal */
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.article-item h2 a {
    color: var(--text-color);
    font-size: var(--font-size-h3);
}

.pagination {
    text-align: center;
}

/*===ARTIKEL-DETAIL===*/
.article-content .article-intro,
.article-content .article-why,
.article-content .article-steps,
.article-content .article-example,
.article-content .article-closing,
.article-content .article-cta {
  margin-bottom: 2rem;
}

.article-content .article-intro h2::before {
  content: "📘 ";
}

.article-content .article-why h2::before {
  content: "❓ ";
}

.article-content .article-steps h2::before {
  content: "🛠️ ";
}

.article-content .article-example h2::before {
  content: "📊 ";
}

.article-content .article-closing h2::before {
  content: "✅ ";
}

.article-content .article-cta h2::before {
  content: "🚀 ";
}

.article-content .article-cta a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  /*background-color: #0077cc;
  color: #fff;*/
  text-decoration: none;
  border-radius: 4px;
}

.article-card a {
    color: var(--primary-color);
}


/*===FA===*/
.fa-24px {
    font-size: 24px;
}

.fokus-bisnis {
  border-bottom: 1px solid;
  padding-bottom: 2px;
  font-weight: 600;
}