/* ============================================
   MentionAgent — Content Page Styles
   Blog, Glossary, Free Tools
   ============================================ */

/* ---- Breadcrumbs ---- */
.breadcrumb {
  padding: 100px 0 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-orange);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--color-text-light);
}

/* ---- Hub Banner (cluster post → hub link) ---- */
.hub-banner {
  padding-top: 12px;
  font-size: 0.85rem;
}

.hub-banner p {
  margin: 0;
  color: var(--color-text-light);
}

.hub-banner a {
  color: var(--color-orange);
  text-decoration: none;
}

.hub-banner a:hover {
  text-decoration: underline;
}

/* ---- Glossary Topic Clusters ---- */
.glossary-topics {
  margin-bottom: 56px;
}

.glossary-topics__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
  text-align: center;
}

.glossary-topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.glossary-topic-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.glossary-topic-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: var(--color-orange);
}

.glossary-topic-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.glossary-topic-card__count {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .glossary-topics__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .glossary-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Content Article Layout ---- */
.content-page {
  padding: 24px 0 96px;
}

.content-page__header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.content-page__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.content-page__meta {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.content-page__body {
  max-width: 760px;
  margin: 0 auto;
}

.content-page__body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.content-page__body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 32px 0 12px;
}

.content-page__body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
}

.content-page__body ul,
.content-page__body ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.content-page__body ol {
  list-style: decimal;
}

.content-page__body li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

.content-page__body a:not(.btn) {
  color: var(--color-orange);
  text-decoration: underline;
}

.content-page__body a:not(.btn):hover {
  color: var(--color-orange-hover);
}

.content-page__body blockquote {
  border-left: 4px solid var(--color-orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.content-page__body blockquote p {
  margin-bottom: 0;
  color: var(--color-text);
  font-style: italic;
}

/* ---- CTA Box (mid-article) ---- */
.cta-box {
  background: linear-gradient(135deg, #fff7f3 0%, #fff0eb 100%);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
}

.cta-box__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.cta-box__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.cta-box .btn {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ---- Related Content ---- */
.related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.related__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related__card {
  display: block;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  text-decoration: none;
}

.related__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: var(--color-orange);
}

.related__card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.related__card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ---- Listing Pages (Blog index, Glossary index, Tools index) ---- */
.listing-hero {
  padding: 120px 0 48px;
  text-align: center;
  background: var(--color-bg);
}

.listing-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.listing-hero__sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.listing-section {
  padding: 64px 0;
}

/* ---- Blog Listing Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: block;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ---- Glossary Index ---- */
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.glossary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.glossary-nav a:hover,
.glossary-nav a.active {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}

.glossary-group {
  margin-bottom: 48px;
}

.glossary-group__letter {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-orange);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 16px;
}

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

.glossary-list li {
  border-bottom: 1px solid var(--color-border);
}

.glossary-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

.glossary-list a:hover {
  color: var(--color-orange);
}

.glossary-list a::after {
  content: "\2192";
  color: var(--color-text-light);
  font-size: 1.1rem;
  transition: transform 0.2s, color 0.2s;
}

.glossary-list a:hover::after {
  transform: translateX(4px);
  color: var(--color-orange);
}

/* ---- Glossary Term Page ---- */
.term-definition {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.term-definition__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-orange);
  margin-bottom: 8px;
}

.term-definition__text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-dark);
}

/* ---- Free Tools ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tool-card {
  display: block;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  text-decoration: none;
}

.tool-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: var(--color-orange);
}

.tool-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.tool-card__icon svg {
  width: 100%;
  height: 100%;
}

.tool-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.tool-card__desc {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---- Tool Form Row (side-by-side inputs) ---- */
.tool-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tool-form__hint {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* ---- Tool Page Form ---- */
.tool-form {
  max-width: 600px;
  margin: 0 auto 48px;
}

.tool-form__group {
  margin-bottom: 20px;
}

.tool-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.tool-form input[type="text"],
.tool-form input[type="url"],
.tool-form input[type="number"],
.tool-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tool-form input:focus,
.tool-form textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(245, 137, 90, 0.15);
}

.tool-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

/* ---- Tool Results ---- */
.tool-result {
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.tool-result.active {
  display: block;
}

.tool-result__card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.tool-result__score {
  text-align: center;
  margin-bottom: 24px;
}

.tool-result__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.tool-result__label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

.tool-result__details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-result__details li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

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

.tool-result__details span:first-child {
  color: var(--color-text-light);
}

.tool-result__details span:last-child {
  font-weight: 600;
  color: var(--color-dark);
}

.tool-result__error {
  text-align: center;
  color: #d32f2f;
  padding: 24px;
}

/* ---- Tool Result Breakdown (scoring criteria list) ---- */
.tool-result__breakdown {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tool-result__breakdown li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

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

.tool-result__breakdown-label {
  flex: 1;
  color: var(--color-text);
}

.tool-result__breakdown-score {
  font-weight: 600;
  color: var(--color-dark);
  min-width: 44px;
  text-align: right;
  white-space: nowrap;
}

.tool-result__breakdown-bar {
  width: 80px;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.tool-result__breakdown-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

/* ---- Tool Result Checks (pass/fail checklist) ---- */
.tool-result__checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-result__checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.93rem;
}

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

.tool-result__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  margin-top: 1px;
}

.tool-result__check-icon--pass { background: #2e7d32; }
.tool-result__check-icon--fail { background: #d32f2f; }
.tool-result__check-icon--warn { background: #f9a825; color: #333; }
.tool-result__check-icon--loading { background: var(--color-border); }

.tool-result__check-text {
  flex: 1;
}

.tool-result__check-name {
  font-weight: 600;
  color: var(--color-dark);
  display: block;
}

.tool-result__check-detail {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 2px;
  display: block;
}

/* ---- Hub Item Cards (category hub pages) ---- */
.hub-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 20px 0;
  transition: border-color 0.2s;
}

.hub-item:hover {
  border-color: var(--color-orange);
}

.hub-item__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 8px;
}

.hub-item__desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 16px;
}

.hub-item__desc:last-child {
  margin-bottom: 0;
}

.hub-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hub-item__link {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}

.hub-item__link:hover {
  background: var(--color-orange);
  color: #fff !important;
}

/* ---- Hub Resource Grid (2-col card grid for guide links) ---- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.hub-grid__card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hub-grid__card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.hub-grid__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 4px;
}

.hub-grid__desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-item {
    padding: 20px;
  }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .content-page__title {
    font-size: 1.8rem;
  }

  .content-page__body h2 {
    font-size: 1.3rem;
  }

  .listing-hero {
    padding: 100px 0 36px;
  }

  .listing-hero__title {
    font-size: 1.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .related__grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-form__row {
    grid-template-columns: 1fr;
  }

  .tool-result__breakdown-bar {
    display: none;
  }

  .glossary-nav a {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .cta-box {
    padding: 28px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Interactive Quiz ---- */
.quiz {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
}

.quiz__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.quiz__question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz__opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: white;
  font-size: 0.95rem;
  font-family: var(--font);
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.quiz__opt:hover {
  border-color: var(--color-orange);
  background: #fff7f3;
}

.quiz__opt--correct {
  border-color: #2e7d32 !important;
  background: #e8f5e9 !important;
  cursor: default;
}

.quiz__opt--wrong {
  border-color: #d32f2f !important;
  background: #ffebee !important;
  cursor: default;
}

.quiz__opt--disabled {
  pointer-events: none;
  opacity: 0.55;
}

.quiz__result {
  display: none;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 12px;
}

.quiz__result.active {
  display: flex;
  animation: quizReveal 0.3s ease;
}

@keyframes quizReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz__result--correct {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
}

.quiz__result--wrong {
  background: #fff3e0;
  border: 1px solid #ffe0b2;
}

.quiz__emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.quiz__result p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ---- Content Tables ---- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 480px;
}

.content-table th {
  background: var(--color-dark);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.content-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  line-height: 1.5;
}

.content-table tr:last-child td {
  border-bottom: none;
}

.content-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

/* ---- Example Domain Buttons (Tools) ---- */
.try-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.85rem;
}

.try-examples__label {
  color: var(--color-text-light);
  line-height: 32px;
}

.try-examples button {
  padding: 4px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: white;
  font-size: 0.85rem;
  font-family: var(--font);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.try-examples button:hover {
  border-color: var(--color-orange);
  background: #fff7f3;
  color: var(--color-orange);
}

/* ---- Score Tip (Tool Results) ---- */
.tool-result__tip {
  margin-top: 20px;
  padding: 14px 18px;
  background: #fff7f3;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* ---- FAQ Section (native <details>) ---- */
.faq {
  margin: 48px 0;
}

.faq__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-of-type {
  border-top: 1px solid var(--color-border);
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-light);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq__item[open] summary::after {
  content: "\2212";
}

.faq__item summary:hover {
  color: var(--color-orange);
}

.faq__answer {
  padding: 0 0 18px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--color-text);
}

.faq__answer p {
  margin: 0 0 12px;
}

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

@media (max-width: 768px) {
  .quiz {
    padding: 20px;
  }

  .quiz__question {
    font-size: 1rem;
  }

  .quiz__opt {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .content-table {
    font-size: 0.85rem;
  }

  .content-table th,
  .content-table td {
    padding: 10px 12px;
  }

  .faq__item summary {
    font-size: 0.97rem;
    padding: 16px 0;
  }

  .faq__answer {
    font-size: 0.93rem;
  }
}
