:root {
  --background: #f2f2f0;
  --foreground: #1f1d2f;
  --muted: #5e6077;
  --accent: #0d9488;
  --accent-2: #2563eb;
  --accent-3: #4338ca;
  --surface: #ffffff;
  --border: rgba(31, 29, 47, 0.08);
  --shadow: 0 24px 60px rgba(29, 15, 73, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --max-width: 1040px;
}

.theme-dark {
  --background: #0d0c1d;
  --foreground: #f7f7fb;
  --muted: #b4b5c8;
  --accent: #0d9488;
  --accent-2: #60a5fa;
  --accent-3: #818cf8;
  --surface: #1a1b2e;
  --border: rgba(247, 247, 251, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.skip-link:focus {
  top: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(242, 242, 240, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(242, 242, 240, 0.9);
  }
}

.theme-dark .site-header {
  background: rgba(13, 12, 29, 0.95);
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .theme-dark .site-header {
    background: rgba(13, 12, 29, 0.9);
  }
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.logo:hover,
.logo:focus-visible {
  color: var(--foreground);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--accent);
  text-decoration: none;
}

.theme-dark .nav-links a:hover,
.theme-dark .nav-links a:focus-visible {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.5;
}

.social-icons img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(10%) sepia(15%) saturate(1500%) hue-rotate(210deg) brightness(95%) contrast(95%);
}

.theme-dark .social-icons img {
  filter: invert(1) brightness(0.85);
}

.social-icons a:hover,
.social-icons a:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
}

.theme-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 168px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(31, 29, 47, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 243, 247, 0.95));
  cursor: pointer;
  gap: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(31, 29, 47, 0.24);
  transform: translateY(-1px);
}

.theme-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(31, 29, 47, 0.68);
  padding: 5px 8px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}


.theme-option img {
  display: none;
}

.theme-option-light {
  color: rgba(255, 255, 255, 0.95);
}
.theme-option-dark {
  color: rgba(31, 29, 47, 0.5);
}

.theme-option-light::before,
.theme-option-dark::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.theme-option-light::before {
  background: rgba(255, 255, 255, 0.95);
  -webkit-mask: url('assets/lightmode.png') center/14px 14px no-repeat;
  mask: url('assets/lightmode.png') center/14px 14px no-repeat;
}

.theme-option-dark::before {
  background: rgba(31, 29, 47, 0.5);
  -webkit-mask: url('assets/darkmode.png') center/14px 14px no-repeat;
  mask: url('assets/darkmode.png') center/14px 14px no-repeat;
}

.theme-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: calc(50% - 1px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 29, 47, 0.9), rgba(62, 70, 118, 0.95));
  transform: translateX(3px);
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 14px rgba(15, 16, 53, 0.24);
  z-index: 0;
}


.theme-dark .theme-toggle {
  background: linear-gradient(135deg, rgba(20, 21, 40, 0.95), rgba(13, 14, 27, 0.95));
  border-color: rgba(247, 247, 251, 0.2);
}

.theme-dark .theme-thumb {
  transform: translateX(calc(100% + 5px));
  background: linear-gradient(135deg, rgba(247, 247, 251, 0.95), rgba(220, 223, 237, 0.95));
}

.theme-dark .theme-option-light {
  color: rgba(247, 247, 251, 0.4);
}

.theme-dark .theme-option-dark {
  color: rgba(13, 13, 23, 1);
}

.theme-dark .theme-option-dark img {
  filter: brightness(0);
}

.hero {
  padding: 96px 0 72px;
}

.hero .inner {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px);
  gap: 64px;
  align-items: center;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  gap: 2px;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 8px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 64px);
  line-height: 1.18;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
}

.hero h1 span {
  display: inline;
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 50%, var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: inherit;
  font-weight: inherit;
  -webkit-text-fill-color: transparent;
}

.tagline {
  margin: 20px 0 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.intro {
  margin: 0 0 32px;
  color: var(--muted);
  max-width: 520px;
}

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

.hero-cta .ghost-button[href="#books"] {
  border-color: rgba(20, 184, 166, 0.35);
  color: var(--accent);
}

.theme-dark .hero-cta .ghost-button[href="#books"] {
  color: var(--accent-2);
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.25);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.ghost-button {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--accent);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.theme-dark .ghost-button {
  color: var(--accent-2);
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    linear-gradient(150deg, rgba(20, 184, 166, 0.75), rgba(67, 56, 202, 0.7)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  background-blend-mode: screen;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-photo, radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.65), rgba(0, 0, 0, 0.15)));
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}

.portfolio h2 {
  font-size: 32px;
  font-family: 'Outfit', 'Inter', sans-serif;
  margin-bottom: 12px;
}

.portfolio {
  padding: 72px 0;
}

.portfolio.alt {
  background: #fff;
}

.theme-dark .portfolio.alt {
  background: #16172a;
}

.theme-dark h2,
.theme-dark h3 {
  color: var(--foreground);
}

.books-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.book-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 28px;
  align-items: center;
}

.book-cover {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
}

.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  transition: color 0.2s ease;
}

.book-links .text-link {
  font-weight: 700;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  max-width: 620px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  margin-top: 32px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 35px rgba(26, 24, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.card p {
  flex-grow: 1;
  margin: 0;
}

.portfolio.alt .card {
  box-shadow: none;
  border-radius: var(--radius-md);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 29, 47, 0.55);
}

.card-meta.stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-start;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 29, 47, 0.6);
}

.card-meta.stacked .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.card-meta.stacked .category {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(13, 148, 136, 0.95);
}

.card-meta.stacked .date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(31, 29, 47, 0.55);
}

.card-meta.stacked .event {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(31, 29, 47, 0.7);
  line-height: 1.3;
  width: 100%;
}

.book-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  row-gap: 4px;
  text-transform: uppercase;
  gap: 2px;
  font-size: 12px;
}

.book-meta .category {
  grid-column: 1;
  justify-self: start;
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(13, 148, 136, 0.95);
}

.book-meta .date {
  grid-column: 2;
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.book-meta .event {
  grid-column: 1 / span 2;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: rgba(31, 29, 47, 0.58);
}

.press-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  row-gap: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

.press-meta .category {
  grid-column: 1;
  justify-self: start;
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(13, 148, 136, 0.95);
}

.press-meta .date {
  grid-column: 2;
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.press-meta .outlet {
  grid-column: 1 / span 2;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: rgba(31, 29, 47, 0.58);
}

#course .course-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

#course .course-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.theme-dark .press-meta {
  color: rgba(247, 247, 251, 0.82);
}

.theme-dark .press-meta .category {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(96, 165, 250, 0.12));
  border-color: rgba(13, 148, 136, 0.35);
  color: rgba(20, 184, 166, 1);
}

.theme-dark .press-meta .date {
  color: rgba(247, 247, 251, 0.74);
}

.theme-dark .press-meta .outlet {
  color: rgba(247, 247, 251, 0.78);
}


.theme-dark .card {
  background: var(--surface);
  border-color: var(--border);
}

.theme-dark .card h3 {
  color: var(--foreground);
}

.theme-dark .card p {
  color: rgba(247, 247, 251, 0.72);
}

.theme-dark .card-meta {
  color: rgba(247, 247, 251, 0.7);
}

.theme-dark .card-meta.stacked .category {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(96, 165, 250, 0.12));
  border-color: rgba(13, 148, 136, 0.35);
  color: rgba(20, 184, 166, 1);
}

.theme-dark .card-meta.stacked .date {
  color: rgba(247, 247, 251, 0.65);
}

.theme-dark .card-meta.stacked .event {
  color: rgba(247, 247, 251, 0.75);
}

.theme-dark .book-meta .category,
.theme-dark .blog-meta .category {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(96, 165, 250, 0.12));
  border-color: rgba(13, 148, 136, 0.35);
  color: rgba(20, 184, 166, 1);
}

.theme-dark .text-link {
  color: var(--accent-2);
}

.site-footer {
  background: var(--background);
  padding: 48px 0;
}

.footer-meta {
  text-align: center;
}

.footer-meta p {
  margin: 0;
}
.theme-dark .theme-option-light::before {
  background: rgba(247, 247, 251, 0.4);
}

.theme-dark .theme-option-dark::before {
  background: rgba(13, 13, 23, 1);
}
.blog-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.blog-meta .category {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(13, 148, 136, 0.95);
}

.blog-meta .date {
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-left: auto;
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

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

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and smaller (max-width: 768px) */
@media (max-width: 768px) {
  .inner {
    width: min(100%, calc(100% - 32px));
  }

  /* Header adjustments */
  .site-header .inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 12px;
    font-size: 14px;
  }

  .nav-actions {
    gap: 16px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 22px;
    height: 22px;
  }

  .theme-toggle {
    width: 140px;
    font-size: 12px;
  }

  /* Hero section - stack on mobile */
  .hero {
    padding: 48px 0 40px;
  }

  .hero .inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-portrait {
    order: 1;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 52px);
  }

  .tagline {
    font-size: 16px;
    margin: 16px 0 20px;
  }

  .intro {
    font-size: 15px;
    margin: 0 0 24px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Sections */
  .portfolio {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .portfolio h2 {
    font-size: 28px;
  }

  .section-heading p {
    font-size: 15px;
  }

  /* Card grids */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 24px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  /* Book cards */
  .book-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-cover {
    max-width: 200px;
    margin: 0 auto;
  }

  .book-content {
    text-align: left;
  }

  .book-links {
    flex-direction: column;
    gap: 10px;
  }

  /* Footer */
  .site-footer {
    padding: 32px 0;
  }

  .site-footer p {
    font-size: 14px;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .inner {
    width: min(100%, calc(100% - 24px));
  }

  /* Header - more compact */
  .logo {
    font-size: 18px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .theme-toggle {
    width: 120px;
  }

  .theme-option {
    font-size: 11px;
    padding: 4px 6px;
    gap: 4px;
  }

  .theme-option-light::before,
  .theme-option-dark::before {
    width: 12px;
    height: 12px;
  }

  /* Hero section */
  .hero {
    padding: 32px 0 28px;
  }

  .hero .inner {
    gap: 32px;
  }

  .hero-portrait {
    max-width: 240px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 44px);
  }

  .hero-copy .eyebrow {
    font-size: 12px;
    margin: 0 0 6px;
  }

  .tagline {
    font-size: 15px;
  }

  .intro {
    font-size: 14px;
  }

  /* Sections */
  .portfolio {
    padding: 40px 0;
  }

  .section-heading h2,
  .portfolio h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  .card h3 {
    font-size: 17px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .card-meta {
    font-size: 11px;
  }

  .card-meta.stacked .meta-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .card-meta.stacked .category {
    padding: 5px 10px;
    font-size: 10px;
  }

  .card-meta.stacked .date {
    font-size: 11px;
  }

  .card-meta.stacked .event {
    font-size: 12px;
  }

  .text-link {
    font-size: 14px;
  }

  /* Book cards - even more compact */
  .book-cover {
    max-width: 160px;
  }

  .book-meta .category,
  .blog-meta .category,
  .press-meta .category {
    padding: 5px 10px;
    font-size: 10px;
  }

  .book-meta,
  .press-meta {
    font-size: 11px;
  }
}
