/**
 * Theme Name:        ITA Salud Mental
 * Theme URI:         https://example.com/ita-salud-mental
 * Description:       Tema custom para el proyecto ITA Salud Mental.
 * Author:
 * Author URI:
 * Version:           1.0.0
 * Requires at least: 6.0
 * Tested up to:      6.7
 * Requires PHP:      8.0
 * License:           GPL-2.0-or-later
 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain:       ita-salud-mental
 */

:root {
  --header-bg: #ffffff;
  --header-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  --header-radius: 24px;
  --header-pad-y: 16px;
  --header-pad-x: 24px;

  --menu-color: #1e252a;
  --menu-font-size: 16px;
  --menu-hover-bg: #f4f5f6;

  --mega-bg: #ffffff;
  --mega-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  --mega-radius: 16px;
  --mega-media-bg: #37424a;

  --accent: #bed600;
  --color-text: #37424a;
  --color-text-secondary: #4d5f6a;
  --color-bg-page: #fafaf7;
  --color-text-eyebrow: #e8f590;
  --color-green-dark: #3e6115;
  --color-lime-muted: #f2fac0;
  --color-lime-700: #8a9c00;
  --color-border-default: #d1d1cb;
  --color-marker: #8c9aa3;

  --color-slate-400: #677885;
  --color-disabled: #a8a8a0;
  --color-bg-surface: #f4f4f0;

  --color-border-default: #e8e8e3;

  --color-tag-bg: #f0f2f3;
  --color-tag-bg-dark: #d9dde0;
  --page-padding: 0 24px;
  --special-padding: 0 8px;
  --transition: all 0.3s ease-in-out;
  --border-radius: 16px;
  --box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

button,
input,
select,
textarea {
  font-family: inherit;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Tipografía
   ========================================================================== */

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 0.5em;
}

body h1 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
}
body h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
body h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.1px;
}
body h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0;
}
body h5 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0;
}
body h6 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin-bottom: 8px;
}

body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child {
  margin-bottom: 0;
}

.label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--color-green-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ita-carousel__nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ita-carousel__nav {
    display: none;
  }
}

.ita-carousel__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.ita-carousel__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.ita-carousel__nav-btn:hover:not(:disabled) {
  transform: scale(1.08);
}

.description {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  outline: none;
  border: none;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-small {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
}
.btn-primary {
  background-color: var(--accent);
  color: var(--menu-color);
}

.btn-secondary {
  background-color: white;
  color: var(--color-text);
  border: 1px solid var(--color-disabled);
}

.btn-link {
  background-color: white;
  color: var(--color-text);
  border-radius: 0;
  border-bottom: 1px solid var(--color-text);
  padding: 4px 0;
}
.btn:hover,
.btn-small:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--color-lime-700);
}
a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--color-text);
  text-decoration: none;
}

@keyframes ita-float {
  0% {
    transform: translateY(0px);
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  }
  50% {
    transform: translateY(-6px);
    animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
  }
  100% {
    transform: translateY(0px);
  }
}

.ita__chevron {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  color: var(--color-text-secondary);
}

.ita__search-icon {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  color: var(--color-text-secondary);
}

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

ul,
ol {
  padding-left: 20px;
}

blockquote {
  border-left: 4px solid #0066cc;
  margin: 1.5em 0;
  padding: 0.5em 1.25em;
  background-color: #f0f4f8;
  border-radius: 0 4px 4px 0;
}

blockquote p {
  margin-bottom: 0;
}

pre {
  background-color: #f4f4f4;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.9rem;
}

code {
  background-color: #f4f4f4;
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  padding: 0.15em 0.4em;
  font-size: 0.9rem;
}

pre code {
  border: none;
  background: none;
  padding: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
  display: flex;
  justify-content: center;
  background-color: white;
}

.content-area {
  width: 100%;
  display: flex;
  gap: 2rem;
}

.main-content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

#main-content {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Bloques sin alineación → centrados a contentSize (1200px)
   Bloques alignwide/alignfull → rompen hacia fuera */
#main-content
  > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)) {
  max-width: var(--wp--style--global--content-size, 1200px);
  margin-left: auto;
  margin-right: auto;
}

#main-content > .alignwide {
  max-width: var(--wp--style--global--wide-size, 100vw);
}

#main-content > .alignfull {
  max-width: 100%;
  width: 100%;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
  width: 280px;
  flex-shrink: 0;
}

.widget {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #0066cc;
  margin-bottom: 1rem;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget li {
  padding: 0.375rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: #2c2c2c;
  color: #cccccc;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1216px;
  margin: 0 auto;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444444;
}

.footer-widgets .widget {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
}

.footer-widgets .widget-title {
  color: #ffffff;
  border-bottom-color: #0066cc;
}

.footer-widgets a {
  color: #cccccc;
}

.footer-widgets a:hover {
  color: #ffffff;
}

.footer-nav {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: #aaaaaa;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  color: #888888;
}

.footer-bottom a {
  color: #aaaaaa;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Posts & Páginas
   ========================================================================== */

.entry {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Asegurar que el artículo sea visible */
article.entry {
  display: block;
  width: 100%;
}

.entry-header {
  padding: 1.5rem 1.5rem 0;
}

.entry-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.entry-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.entry-title a:hover {
  color: #0066cc;
  text-decoration: none;
}

.entry-meta {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.entry-meta a {
  color: #666666;
}

.entry-meta span + span::before {
  content: "·";
  margin: 0 0.5rem;
}

.entry-content {
  padding: 1.5rem;
  line-height: 1.8;
  color: #333;
}

.entry-content p {
  margin-bottom: 1.2em;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #1a1a1a;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.2em;
  padding-left: 2em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 4px;
}

.entry-content a {
  color: #0066cc;
  text-decoration: underline;
}

.entry-content a:hover {
  color: #004499;
}

.entry-content blockquote {
  border-left: 4px solid #0066cc;
  margin: 1.5em 0;
  padding: 0.5em 1.25em;
  background-color: #f0f4f8;
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.entry-content table th,
.entry-content table td {
  padding: 0.75em;
  border: 1px solid #e2e2e2;
  text-align: left;
}

.entry-content table th {
  background-color: #f4f4f4;
  font-weight: 600;
}

.entry-footer {
  padding: 1rem 1.5rem;
  background-color: #fafafa;
  border-top: 1px solid #f0f0f0;
  font-size: 0.875rem;
  color: #888888;
}

.entry-footer a {
  color: #666666;
}

/* ==========================================================================
   Imagen destacada
   ========================================================================== */

.post-thumbnail {
  width: 100%;
  margin-bottom: 0;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   "Leer más"
   ========================================================================== */

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #0066cc;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  background-color: #004499;
  color: #ffffff;
  text-decoration: none;
}

/* ==========================================================================
   Archivos & Cabeceras de archivo
   ========================================================================== */

.archive-header {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.archive-header h1 {
  margin-bottom: 0.25rem;
}

.archive-header .archive-description {
  color: #666666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Sin resultados */

.no-posts {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
}

.no-posts h2 {
  color: #666666;
}

.no-posts p {
  color: #888888;
}

/* ==========================================================================
   Búsqueda
   ========================================================================== */

.searchform {
  display: flex;
}

.searchform input[type="search"] {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e2e2e2;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.95rem;
  background: #ffffff;
}

.searchform input[type="search"]:focus {
  outline: none;
  border-color: #0066cc;
}

.searchform button {
  padding: 0.625rem 1rem;
  background-color: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.searchform button:hover {
  background-color: #004499;
}

/* ==========================================================================
   Paginación (archivo de posts)
   ========================================================================== */

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

nav.pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

nav.pagination .page-numbers li {
  margin: 0;
}

nav.pagination .page-numbers a,
nav.pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #ffffff;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

nav.pagination .page-numbers a:hover {
  background-color: #f0f4f8;
  border-color: #0066cc;
  color: #0066cc;
  text-decoration: none;
}

nav.pagination .page-numbers span.current {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   Navegación de post (anterior / siguiente)
   ========================================================================== */

nav.post-nav {
  margin: 2rem 0;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  overflow: hidden;
}

nav.post-nav .nav-links {
  display: flex;
}

nav.post-nav .nav-previous,
nav.post-nav .nav-next {
  flex: 1;
  padding: 1rem 1.25rem;
}

nav.post-nav .nav-previous {
  border-right: 1px solid #e2e2e2;
}

nav.post-nav .nav-next {
  text-align: right;
}

nav.post-nav a {
  display: block;
  color: #0066cc;
  text-decoration: none;
}

nav.post-nav a:hover {
  color: #004499;
  text-decoration: none;
}

nav.post-nav .nav-subtitle {
  display: block;
  font-size: 0.8rem;
  color: #888888;
  font-weight: 400;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

nav.post-nav .nav-title {
  display: block;
  font-weight: 500;
}

/* ==========================================================================
   Comentarios
   ========================================================================== */

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comment-avatar img {
  border-radius: 50%;
}

.comment-meta {
  font-size: 0.85rem;
}

.comment-author {
  font-weight: 600;
  color: #2c2c2c;
}

.comment-date {
  color: #888888;
}

.comment-text p {
  margin-bottom: 0.5em;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.reply-link {
  font-size: 0.85rem;
}

/* Respuestas anidadas */

.comment-list .children {
  list-style: none;
  padding-left: 2rem;
  margin-top: 1rem;
}

/* ==========================================================================
   Formulario de comentarios
   ========================================================================== */

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: var(--box-shadow);
}

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

.comment-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #444444;
}

.comment-form .form-allowed-tags {
  font-size: 0.8rem;
  color: #888888;
}

.comment-form .comment-form-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.comment-form .submit {
  margin-top: 1rem;
}

.comment-form input[type="submit"] {
  padding: 0.625rem 1.5rem;
  background-color: #0066cc;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  width: auto;
  transition: var(--transition);
}

.comment-form input[type="submit"]:hover {
  background-color: #004499;
}

/* ==========================================================================
   Page templates
   ========================================================================== */

/* Full width — sin sidebar */

.page-full-width .content-area {
  max-width: 1200px;
}

.page-full-width .sidebar {
  display: none;
}

/* ==========================================================================
   WordPress Admin Bar
   ========================================================================== */

/* ==========================================================================
   Responsive — Tablet
   ========================================================================== */

@media screen and (max-width: 900px) {
  .content-area {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    order: 2;
  }

  .main-content {
    order: 1;
  }

  .footer-widgets {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* ==========================================================================
   Responsive — Mobile
   ========================================================================== */

@media screen and (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .nav-primary ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e2e2;
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
    z-index: 99;
  }

  .nav-primary.nav-open > ul {
    display: flex;
  }

  .nav-primary ul ul {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f0f0f0;
    padding-left: 1rem;
    border-radius: 0;
  }

  .nav-primary li:hover > ul {
    display: none;
  }

  .nav-primary li.nav-open > ul {
    display: block;
  }

  .header-inner {
    position: relative;
  }

  .site-name {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  .entry-header,
  .entry-content,
  .entry-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
  }

  nav.post-nav .nav-links {
    flex-direction: column;
  }

  nav.post-nav .nav-previous {
    border-right: none;
    border-bottom: 1px solid #e2e2e2;
  }

  nav.post-nav .nav-next {
    text-align: left;
  }

  .comment-form .comment-form-wrap {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Utilidades
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   Webfonts — movido desde assets/css/fonts.css
   ========================================================================== */

/* ==========================================================================
   Plus Jakarta Sans — self-hosted woff2
   ========================================================================== */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-300.woff2")
    format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-300italic.woff2")
    format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-italic.woff2")
    format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-500.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-500italic.woff2")
    format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-600.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-600italic.woff2")
    format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-700.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-700italic.woff2")
    format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-800.woff2")
    format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/plus-jakarta-sans/plus-jakarta-sans-v12-latin-800italic.woff2")
    format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   Inter — self-hosted woff2
   ========================================================================== */

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
