/*
Theme Name: AutoManuscript Editable
Theme URI: https://automanuscript.com/
Author: AutoManuscript
Description: Editable WordPress page theme for the AutoManuscript first landing page.
Version: 0.2.8
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: automanuscript-editable
*/

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ams-ink: #1c1c1e;
  --ams-rust: #c4622d;
  --ams-rust-dark: #a94f21;
  --ams-gold: #d4a843;
  --ams-paper: hsl(36 43% 93%);
  --ams-line: hsl(20 22% 84%);
  --ams-muted: rgba(28, 28, 30, 0.68);
  --ams-max: 1280px;
  --ams-heading: "Playfair Display", Georgia, serif;
  --ams-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ams-paper);
  color: var(--ams-ink);
  font-family: var(--ams-body);
  line-height: 1.5;
  letter-spacing: 0;
}

body.admin-bar .ams-header {
  top: 32px;
}

a {
  color: inherit;
}

.ams-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 80px;
  color: #fff;
  background: transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.ams-header.is-scrolled {
  background: rgba(28, 28, 30, 0.95);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.ams-header__inner {
  width: min(100%, var(--ams-max));
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ams-brand {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ams-brand__mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.ams-brand__title {
  display: block;
  font-family: var(--ams-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.ams-brand__edition {
  display: block;
  margin-top: 3px;
  color: var(--ams-rust);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.ams-nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ams-nav li {
  margin: 0;
}

.ams-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.ams-nav a:hover,
.ams-nav a:focus {
  color: var(--ams-gold);
}

.ams-nav > .ams-nav__button,
.ams-nav .menu-item.ams-nav__button > a {
  color: #fff;
  background: var(--ams-rust);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 3px;
}

.ams-nav > .ams-nav__button::after,
.ams-nav .menu-item.ams-nav__button > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 auto;
}

.ams-nav > .ams-nav__button:hover,
.ams-nav > .ams-nav__button:focus,
.ams-nav .menu-item.ams-nav__button > a:hover,
.ams-nav .menu-item.ams-nav__button > a:focus {
  color: #fff;
  background: var(--ams-rust-dark);
}

.ams-main {
  min-height: 70vh;
}

.ams-main > * {
  margin-top: 0;
}

.ams-kicker {
  color: var(--ams-rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ams-hero {
  min-height: calc(100vh - 57px) !important;
  padding: 0 24px 120px;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  position: relative;
  overflow: hidden;
}

.ams-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(196, 98, 45, 0.55) 0%, rgba(28, 28, 30, 0.82) 60%, rgba(28, 28, 30, 0.96) 100%);
}

.ams-hero .wp-block-cover__background {
  opacity: 0 !important;
}

.ams-hero .wp-block-cover__inner-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.ams-hero__content {
  width: min(768px, 100%);
  max-width: 768px;
  margin: 0 auto !important;
}

.ams-hero .ams-kicker {
  color: var(--ams-gold);
  line-height: 16px;
  margin: 0 0 24px;
}

.ams-hero h1,
.ams-page-hero h1 {
  max-width: none;
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--ams-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.ams-hero h1 strong,
.ams-hero .has-inline-color {
  color: var(--ams-gold);
}

.ams-hero p:not(.ams-kicker) {
  color: #fff;
  max-width: 672px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 40px;
}

.ams-button .wp-block-button__link,
.wp-block-button.ams-button .wp-block-button__link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  padding: 16px 32px;
  background: var(--ams-gold);
  color: var(--ams-ink);
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-decoration: none;
}

.ams-button .wp-block-button__link::after,
.wp-block-button.ams-button .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex: 0 0 auto;
}

.ams-button .wp-block-button__link:hover,
.wp-block-button.ams-button .wp-block-button__link:hover {
  filter: brightness(0.96);
}

.ams-hero .ams-button .wp-block-button__link {
  min-width: 227px;
}

.ams-statbar {
  min-height: 57px;
  background: rgba(28, 28, 30, 0.9);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 40px;
}

.ams-statbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.ams-statbar p:not(:first-child)::before {
  content: "\00b7";
  color: var(--ams-rust);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.ams-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
  transition-delay: var(--ams-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.ams-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .ams-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.ams-section {
  padding: 128px 0;
}

.ams-section > .wp-block-group__inner-container,
.ams-section.is-layout-constrained > * {
  width: min(100%, var(--ams-max));
  max-width: var(--ams-max);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px;
  padding-right: 40px;
}

.ams-section h2,
.ams-page-hero h1 {
  font-family: var(--ams-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.ams-section h2 {
  margin: 0 0 48px;
  font-size: 48px;
  line-height: 1;
}

.ams-section h3 {
  margin-top: 0;
}

.ams-section p,
.ams-section li {
  color: var(--ams-muted);
  font-size: 16px;
  line-height: 1.65;
}

.ams-section ul {
  padding-left: 20px;
}

.ams-dark {
  background: var(--ams-ink);
  color: #fff;
}

.ams-dark p,
.ams-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.ams-dark h2,
.ams-dark h3 {
  color: #fff;
}

.ams-card-dark {
  background: var(--ams-ink);
  color: #fff;
  border-radius: 16px;
  padding: 56px;
}

.ams-card-dark .ams-kicker {
  color: var(--ams-rust);
  margin-bottom: 18px;
}

.ams-card-dark h2 {
  color: #fff;
  font-size: 72px;
  line-height: 1;
  margin: 0 0 16px;
}

.ams-card-dark h3 {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--ams-body);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.ams-card-dark .wp-block-columns {
  gap: 28px;
  margin-top: 34px;
}

.ams-card-dark .wp-block-columns h3 {
  color: var(--ams-gold);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

#about > .wp-block-columns {
  align-items: center;
  gap: 64px;
}

#about > .wp-block-columns > .wp-block-column:nth-child(2) h2 {
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 24px;
}

#about > .wp-block-columns > .wp-block-column:nth-child(2) .ams-kicker {
  margin-bottom: 20px;
}

#about {
  padding-bottom: 46px;
}

#books .ams-kicker,
.ams-benefits .ams-kicker,
.ams-faq-preview .ams-kicker {
  margin-bottom: 18px;
}

#books h2,
.ams-benefits h2,
.ams-faq-preview h2 {
  text-align: center;
}

#books h2 {
  margin-bottom: 56px;
}

#books {
  padding-bottom: 90px;
}

.ams-book-grid {
  gap: 32px;
  margin-bottom: 0;
}

.ams-book-card {
  gap: 28px;
  align-items: flex-start;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.ams-book-cover {
  margin: 0;
}

.ams-book-cover img {
  width: 176px;
  max-width: 176px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.ams-book-card h3 {
  color: #fff;
  font-family: var(--ams-body);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ams-book-card ul {
  margin-bottom: 24px;
}

.ams-bundle {
  margin-top: 34px;
  border: 1px solid rgba(212, 168, 67, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.ams-bundle > .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ams-bundle > .wp-block-group__inner-container > * {
  margin: 0;
}

.ams-bundle-art {
  flex: 0 0 225px;
  height: 212px;
  position: relative;
}

.ams-bundle-art img {
  position: absolute;
  top: 16px;
  width: 132px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.ams-bundle-art img:first-child {
  left: 0;
  transform: rotate(-5deg);
}

.ams-bundle-art img:last-child {
  left: 82px;
  transform: rotate(5deg);
}

.ams-bundle-copy {
  flex: 1 1 auto;
}

.ams-bundle-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--ams-gold);
  padding: 6px 16px;
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ams-bundle .ams-kicker {
  color: var(--ams-gold);
  margin: 0 0 8px;
}

.ams-bundle h3 {
  font-family: var(--ams-heading);
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 8px;
}

.ams-bundle p {
  margin: 0;
  max-width: 620px;
}

.ams-bundle-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 24px;
}

.ams-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-align: left;
  width: 180px;
  flex: 0 0 180px;
}

.ams-price del {
  display: inline-block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 20px;
  line-height: 1;
}

.ams-price strong {
  display: inline-block;
  color: var(--ams-gold);
  font-family: var(--ams-heading);
  font-size: 30px;
  line-height: 36px;
}

.ams-price span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ams-bundle-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 12px 28px;
  background: var(--ams-gold);
  color: var(--ams-ink);
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  text-decoration: none;
}

.ams-benefit-grid {
  gap: 24px;
  margin-top: 56px;
}

.ams-benefits {
  padding-bottom: 94px;
}

.ams-benefit-card {
  border: 1px solid var(--ams-line);
  border-radius: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.34);
}

.ams-benefit-card h3 {
  color: var(--ams-ink);
  font-family: var(--ams-body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ams-proof {
  text-align: center;
  padding-top: 156px;
  padding-bottom: 124px;
  background: #141414;
}

.ams-proof .ams-proof-number {
  color: var(--ams-gold);
  font-family: var(--ams-heading);
  font-size: 96px;
  line-height: 96px;
  font-weight: 700;
  margin: 0 0 16px;
}

.ams-proof h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 12px;
}

.ams-proof > .wp-block-group__inner-container > p:not(.ams-proof-number) {
  max-width: 520px;
  margin: 0 auto 64px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 16px;
  line-height: 24px;
}

.ams-proof-badges,
.ams-proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0 !important;
  list-style: none;
}

.ams-proof-badges {
  min-height: 70px;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  margin: 0 auto 36px;
  padding: 24px 32px !important;
}

.ams-proof-badges li {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ams-proof-stats {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ams-proof-stats li {
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.ams-proof-stats strong {
  display: block;
  color: var(--ams-gold);
  font-family: var(--ams-heading);
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 4px;
}

.ams-proof-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.ams-testimonials h2 {
  max-width: 576px;
  margin-bottom: 56px;
}

.ams-testimonials .ams-kicker {
  color: var(--ams-rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 16px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.ams-testimonials {
  padding-bottom: 36px;
}

.ams-testimonial {
  border-bottom: 1px solid var(--ams-line);
  padding: 0 0 50px;
  margin-top: 0;
}

.ams-testimonial + .ams-testimonial {
  margin-top: 56px;
}

.ams-testimonial .wp-block-media-text {
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 24px;
  align-items: start;
  margin: 0 !important;
}

.ams-testimonial .wp-block-media-text__media {
  align-self: start !important;
  display: flex;
  line-height: 0;
  margin: 0 !important;
}

.ams-testimonial .wp-block-media-text__content {
  padding: 0 !important;
}

.ams-testimonial img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid var(--ams-rust);
}

.ams-testimonial blockquote {
  margin: 0;
  color: rgba(28, 28, 30, 0.8);
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
}

.ams-testimonial blockquote::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  margin: 0 0 12px;
  color: var(--ams-gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 0.14em;
}

.ams-testimonial blockquote p {
  color: rgba(28, 28, 30, 0.8);
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 16px;
}

.ams-testimonial blockquote p::before,
.ams-testimonial blockquote p::after {
  content: "\0022";
}

.ams-testimonial cite {
  display: block;
  margin-top: 0;
  color: var(--ams-rust);
  font-size: 13px;
  line-height: 20px;
  font-style: normal;
  font-weight: 800;
}

.ams-testimonial cite::first-line {
  color: var(--ams-ink);
  font-size: 14px;
}

.ams-cta {
  background: var(--ams-rust);
  color: #fff;
  padding: 48px 0;
}

.ams-cta .wp-block-group__inner-container {
  width: min(100%, var(--ams-max));
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ams-cta .ams-kicker {
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 10px;
}

.ams-cta h2,
.ams-cta p {
  color: #fff;
  margin: 0;
}

.ams-cta h2 {
  font-family: var(--ams-heading);
  font-size: 38px;
  line-height: 1.1;
}

.ams-faq-preview h2 {
  margin-bottom: 44px;
}

.ams-faq-preview {
  padding-bottom: 102px;
}

.ams-faq-preview details,
.ams-faq-page details {
  width: min(768px, 100%);
  min-height: 64px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--ams-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  padding: 18px 22px;
}

.ams-faq-preview details + details,
.ams-faq-page details + details {
  margin-top: 14px;
}

.ams-faq-preview summary,
.ams-faq-page summary {
  cursor: pointer;
  font-family: var(--ams-body);
  font-size: 17px;
  font-weight: 800;
  color: var(--ams-ink);
}

.ams-page-hero {
  background: var(--ams-ink);
  color: #fff;
  padding: 150px 24px 86px;
}

.ams-page-hero .wp-block-group__inner-container {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ams-footer {
  background: var(--ams-ink);
  color: rgba(255, 255, 255, 0.48);
  padding: 56px 0 23px;
}

.ams-footer__inner {
  width: min(100%, var(--ams-max));
  margin: 0 auto;
  padding: 0 40px;
}

.ams-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
  color: #fff;
}

.ams-footer__brand svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.ams-footer__brand-title {
  display: block;
  font-family: var(--ams-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.ams-footer__brand-edition {
  display: block;
  margin-top: 4px;
  color: var(--ams-rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ams-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ams-footer a {
  color: rgba(255, 255, 255, 0.54);
  text-decoration: none;
}

.ams-footer__links {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  body.admin-bar .ams-header {
    top: 46px;
  }

  .ams-header {
    height: 74px;
  }

  .ams-header__inner {
    padding: 0 24px;
  }

  .ams-nav > a:not(.ams-nav__button),
  .ams-nav .ams-nav__menu .menu-item:not(.ams-nav__button) {
    display: none;
  }

  .ams-nav > .ams-nav__button,
  .ams-nav .menu-item.ams-nav__button > a {
    padding: 10px 14px;
    font-size: 13px;
  }

  .ams-hero {
    min-height: calc(100vh - 96px) !important;
    padding: 128px 24px 72px;
  }

  .ams-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1.05;
  }

  .ams-section {
    padding: 88px 0;
  }

  .ams-section > .wp-block-group__inner-container,
  .ams-section.is-layout-constrained > * {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ams-section h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  #about > .wp-block-columns,
  .ams-book-grid,
  .ams-book-card {
    gap: 28px;
  }

  .ams-card-dark {
    padding: 36px;
  }

  .ams-card-dark h2 {
    font-size: 54px;
  }

  .ams-bundle > .wp-block-group__inner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .ams-bundle-art {
    flex-basis: auto;
    width: 225px;
  }

  .ams-bundle-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ams-price {
    text-align: left;
  }

  .ams-proof-badges {
    justify-content: flex-start;
  }

  .ams-proof-stats {
    grid-template-columns: 1fr;
  }

  .ams-testimonial .wp-block-media-text {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 18px;
  }

  .ams-testimonial img {
    width: 72px;
    height: 72px;
  }

  .ams-testimonial blockquote {
    font-size: 15px;
    line-height: 24px;
  }

  .ams-cta .wp-block-group__inner-container {
    display: block;
  }

  .ams-cta .wp-block-buttons {
    margin-top: 24px;
  }

  .ams-footer__inner {
    padding: 0 24px;
  }
}
