/* ================================================================
   VAIBHAV HIWALE — Personal Website
   assets/css/style.css
   ================================================================

   TABLE OF CONTENTS
   -----------------
   1.  CSS Variables   ← Edit these to change colors/fonts site-wide
   2.  Base & Typography
   3.  Navigation Bar
   4.  Hero Section
   5.  Section Utilities (labels, headings, dividers)
   6.  Services Section
   7.  Skills Section
   8.  Achievements Section
   9.  Call-to-Action Band
   10. Portfolio Cards
   11. Blog Cards & Article Pages
   12. CV / Timeline Layout
   13. Contact & Form
   14. Media Section (YouTube + Instagram)
   15. Footer
   16. Buttons
   17. Scroll-to-Top Button
   18. Responsive Adjustments

   ================================================================ */


/* ================================================================
   1. CSS VARIABLES
   Edit the values below to update the whole site's look at once.
   ================================================================ */
:root {
  /* Accent color (gold/tan) — buttons, highlights, borders */
  --accent:        #c0a375;
  --accent-dark:   #a08a5f;

  /* Background colors */
  --bg-white:      #ffffff;
  --bg-light:      #f7f7f7;
  --bg-dark:       #282828;

  /* Text colors */
  --text:          #232323;
  --text-muted:    #666666;
  --text-faint:    #aaaaaa;

  /* Borders */
  --border:        #e0e0e0;

  /* Font */
  --font:          'Jost', sans-serif;

  /* Section vertical padding */
  --section-pad:   80px;
}


/* ================================================================
   2. BASE & TYPOGRAPHY
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

ul {
  margin: 0;
  padding-left: 1.2rem;
}

ul li {
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 4px;
}


/* ================================================================
   3. NAVIGATION BAR
   ================================================================ */
#main-navbar {
  background-color: var(--bg-dark);
  padding: 16px 0;
  transition: padding 0.3s, box-shadow 0.3s;
}

/* Shrinks slightly after the user scrolls (controlled by main.js) */
#main-navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

#main-navbar .navbar-brand {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

#main-navbar .navbar-brand:hover {
  color: var(--accent);
}

#main-navbar .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

#main-navbar .nav-link:hover,
#main-navbar .nav-link.active {
  color: var(--accent);
}

/* Dropdown menu */
#main-navbar .dropdown-menu {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 8px 0;
  margin-top: 8px;
  min-width: 210px;
}

#main-navbar .dropdown-item {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s;
}

#main-navbar .dropdown-item:hover {
  background-color: rgba(192, 163, 117, 0.12);
  color: var(--accent);
}

/* Social icons in the navbar */
.navbar-social a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-left: 10px;
  transition: color 0.2s;
}

.navbar-social a:hover {
  color: var(--accent);
}

/* White hamburger icon for dark navbar — Bootstrap's default is dark-colored */
#main-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}
#main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c%2fsvg%3e");
}

/* Mobile: stacks social icons below nav links */
@media (max-width: 991px) {
  .navbar-social {
    padding: 10px 0;
  }

  .navbar-social a {
    margin-left: 0;
    margin-right: 14px;
  }
}


/* ================================================================
   4. HERO SECTION
   ================================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;   /* top padding clears the fixed navbar */
  background-color: var(--bg-white);
  background-image: radial-gradient(rgba(192, 163, 117, 0.18) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Short gold bar — add <span class="hero-accent-bar"></span> above the hero <h1> */
.hero-accent-bar {
  display: block;
  width: 52px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: 20px;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page header used on inner pages (cv, portfolio, blog, contact) */
.page-header {
  padding: 140px 0 56px;
  background-color: var(--bg-light);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: 8px;
}


/* ================================================================
   5. SECTION UTILITIES
   ================================================================ */

/* Consistent vertical rhythm for every section */
.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--bg-dark);
}

/* Small uppercase label above section headings */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: #fff;
}

/* Short colored bar beneath section headings */
.section-divider {
  width: 44px;
  height: 3px;
  background-color: var(--accent);
  border: none;
  margin: 0 0 28px;
  opacity: 1;
}

/* Center the divider when the section heading is centered */
.section-divider.center {
  margin-left: auto;
  margin-right: auto;
}


/* ================================================================
   6. SERVICES SECTION
   ================================================================ */
.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 36px 28px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

/* Large number (01, 02, ...) used as a visual icon */
.service-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.85;
}

.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}


/* ================================================================
   7. SKILLS SECTION
   ================================================================ */
.skill-group {
  margin-bottom: 24px;
}

.skill-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 10px;
}

/* Individual skill chip / badge */
.skill-badge {
  display: inline-block;
  background-color: #f0ebe2;
  color: var(--text);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 0.83rem;
  font-weight: 500;
  margin: 3px 4px 3px 0;
}


/* ================================================================
   8. ACHIEVEMENTS SECTION
   ================================================================ */
.achievement-item {
  padding: 24px 20px;
  text-align: center;
}

.achievement-icon {
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.achievement-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.achievement-item p {
  font-size: 0.86rem;
  color: var(--text-faint);
  line-height: 1.6;
  margin: 0;
}


/* ================================================================
   9. CALL-TO-ACTION BAND
   ================================================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background-color: var(--bg-light);
  text-align: center;
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto 32px;
}


/* ================================================================
   10. PORTFOLIO CARDS
   ================================================================ */
.portfolio-card {
  border: 1px solid var(--border);
  padding: 30px 28px;
  height: 100%;
  transition: box-shadow 0.25s;
}

.portfolio-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.portfolio-tag {
  display: inline-block;
  background-color: #f0ebe2;
  color: var(--accent-dark);
  border-radius: 3px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

.portfolio-card h5 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.portfolio-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Small tool / technology tags at the bottom of a card */
.tool-tag {
  display: inline-block;
  background-color: #ebebeb;
  color: #555;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 0.76rem;
  margin: 2px 2px 2px 0;
}


/* ================================================================
   11. BLOG CARDS & ARTICLE PAGES
   ================================================================ */
.blog-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  padding: 30px 28px;
  height: 100%;
  transition: box-shadow 0.25s;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.blog-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.blog-card h5 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.blog-read-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-dark);
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--accent);
}

/* Blog article page layout */
.article-header {
  padding: 140px 0 48px;
  background-color: var(--bg-light);
}

.article-date {
  font-size: 0.86rem;
  color: var(--text-faint);
  margin-top: 10px;
  font-style: italic;
}

.article-body {
  padding: 60px 0 80px;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.9;
  max-width: 720px;
}

.article-body img {
  border-radius: 4px;
  margin-bottom: 8px;
}

.article-img-caption {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 28px;
}


/* ================================================================
   12. CV / TIMELINE LAYOUT
   ================================================================ */
.cv-section {
  margin-bottom: 52px;
}

/* Uppercase divider title (e.g. "Work Experience") */
.cv-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 28px;
}

/* Each job / school / project entry */
.timeline-entry {
  position: relative;
  padding-left: 22px;
  border-left: 2px solid var(--border);
  margin-bottom: 30px;
}

/* The accent dot on the timeline line */
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.timeline-org {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.timeline-role {
  font-size: 0.9rem;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 2px;
}

.timeline-date {
  font-size: 0.82rem;
  color: var(--text-faint);
  white-space: nowrap;
}

.timeline-entry ul li {
  font-size: 0.92rem;
}

/* Publication entries */
.publication-item {
  position: relative;
  padding-left: 22px;
  border-left: 2px solid var(--border);
  margin-bottom: 20px;
}

.publication-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.pub-badge {
  display: inline-block;
  background-color: #f0ebe2;
  color: var(--accent-dark);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.publication-item p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}

/* Award list entries */
.award-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.award-item .award-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  padding-top: 3px;
}

.award-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* CV sidebar items (certs, referees) */
.cv-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-sidebar-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.cv-sidebar-list li:last-child {
  border-bottom: none;
}

.cv-referee {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cv-referee strong {
  color: var(--text);
  display: block;
}


/* ================================================================
   13. CONTACT & FORM
   ================================================================ */
.contact-info-card {
  padding: 28px;
  border: 1px solid var(--border);
  height: 100%;
}

.contact-info-card .contact-icon {
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.contact-info-card h6 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* Form labels */
.contact-form .form-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Form inputs and textarea */
.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--bg-white);
  transition: border-color 0.2s;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: none;
  outline: none;
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}


/* ================================================================
   14. MEDIA SECTION  (YouTube + Instagram)
   ================================================================ */

/* Responsive video wrapper for YouTube and any 16:9 video */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: #111;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption under a video or photo */
.media-caption {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Instagram embed fix — forces full width on mobile */
.instagram-embed-wrapper {
  width: 100%;
  overflow: hidden;
}

.instagram-embed-wrapper .instagram-media {
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* Local image gallery grid */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.media-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.media-gallery-item img:hover {
  opacity: 0.85;
}


/* ================================================================
   15. FOOTER
   ================================================================ */
#site-footer {
  background-color: var(--bg-dark);
  padding: 60px 0 0;
  color: var(--text-faint);
}

.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.86rem;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--text-faint);
  font-size: 1.1rem;
  margin-right: 14px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-faint);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-info {
  font-size: 0.86rem;
  color: var(--text-faint);
  line-height: 2.1;
  margin: 0;
}

.footer-contact-info a {
  color: var(--text-faint);
}

.footer-contact-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #383838;
  margin-top: 40px;
  padding: 18px 0;
  font-size: 0.8rem;
  color: #555;
  text-align: center;
}


/* ================================================================
   16. BUTTONS
   ================================================================ */

/* Filled button (primary action) */
.btn-primary-custom {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s, border-color 0.25s;
  cursor: pointer;
  line-height: 1;
}

.btn-primary-custom:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* Outlined button (secondary action) */
.btn-outline-custom {
  display: inline-block;
  background-color: transparent;
  color: var(--text);
  padding: 14px 32px;
  border: 2px solid var(--text);
  border-radius: 3px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
  cursor: pointer;
  line-height: 1;
}

.btn-outline-custom:hover {
  background-color: var(--text);
  color: #fff;
}


/* ================================================================
   17. SCROLL-TO-TOP BUTTON
   ================================================================ */
#scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.2s;
  z-index: 1000;
}

/* Class added by main.js when user scrolls down 300px */
#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-to-top:hover {
  background-color: var(--accent-dark);
}


/* ================================================================
   18. RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 767px) {
  /* Tighter section padding on small screens */
  :root {
    --section-pad: 52px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-custom {
    text-align: center;
  }

  .page-header,
  .article-header {
    padding-top: 110px;
  }

  .timeline-entry {
    padding-left: 16px;
  }

  /* Stack CV sidebar below main content on mobile */
  .cv-sidebar {
    margin-top: 40px;
  }
}


/* ================================================================
   19. JOURNAL PAGE — topic category tiles and badges
   ================================================================ */
.journal-topic-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  background-color: var(--bg-white);
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.journal-topic-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.journal-topic-card .topic-icon {
  font-size: 1.8rem;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.journal-topic-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.journal-topic-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* "Coming Soon" / "Active" status badge on topic cards */
.topic-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.topic-badge.active {
  color: var(--accent-dark);
  border-color: var(--accent);
  background-color: #f9f4ed;
}
