.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #1b1b1b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hairline-border { border: 0.5px solid #000000; }
.hairline-b { border-bottom: 0.5px solid #1b1b1b; }
.hairline-t { border-top: 0.5px solid #1b1b1b; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.input-underline {
  border: none;
  border-bottom: 1px solid #000000;
  background: transparent;
  border-radius: 0;
  padding: 8px 0;
  outline: none;
  box-shadow: none;
  transition: border-color 0.3s ease;
}
.input-underline:focus { border-bottom-color: #c6c6c6; box-shadow: none; }

.btn-editorial {
  background-color: #000000;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-editorial:hover { background-color: #5e5e5e; }
.btn-editorial:active { transform: scale(0.98); }

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

.font-headline-md,
.font-headline-lg,
.font-headline-lg-mobile,
.font-display-lg {
  text-transform: uppercase;
}

.nav-link {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: #5e5e5e;
  transition: color 0.3s;
  display: inline-block;
}
.nav-link:hover { color: #1b1b1b; }
.nav-link.active {
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 4px;
}
