/*
Theme Name: Bamona
Theme URI: https://bamona.com
Author: Bamona Technology
Author URI: https://bamona.com
Description: Custom WordPress theme for Bamona Technology - Solving Real Problems, One Tech at a Time.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bamona
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

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

body {
  min-height: 100vh;
  background-color: #ffffff;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: #e2e8f0;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   1. ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background-color: #0f172a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  overflow: hidden;
  position: relative;
}

.announcement-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
  position: relative;
}

.announcement-bar__text {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.announcement-bar__text.active {
  opacity: 1;
  transform: translateY(0);
}

.announcement-bar__text.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* ============================================
   2. NAVIGATION
   ============================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
}

.site-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.site-nav__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #0f172a;
  flex-shrink: 0;
}

.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 0.2s;
}

.site-nav__link:hover {
  color: #0f172a;
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  color: #ffffff;
  background-color: #0f172a;
  transition: background-color 0.2s;
}

.site-nav__cta:hover {
  background-color: #1e293b;
}

/* Mobile menu toggle */
.site-nav__toggle {
  display: flex;
  align-items: center;
  color: #475569;
}

@media (min-width: 768px) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 0.5rem 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}

.mobile-menu a:last-child {
  color: #0f172a;
  font-weight: 700;
}

/* ============================================
   3. HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
}

.hero__content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title span {
  color: #94a3b8;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__description {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

.hero__tagline {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: #f8fafc;
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
  opacity: 0.6;
}

/* ============================================
   BUTTONS (shared)
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn--primary {
  background-color: #0f172a;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #1e293b;
}

.btn--primary .btn__icon {
  transition: transform 0.2s;
}

.btn--primary:hover .btn__icon {
  transform: translateX(4px);
}

.btn--secondary {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.btn--secondary:hover {
  background-color: #f8fafc;
}

.btn--white {
  background-color: #ffffff;
  color: #0f172a;
}

.btn--white:hover {
  background-color: #f1f5f9;
}

.btn--outline-dark {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #475569;
}

.btn--outline-dark:hover {
  background-color: #334155;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

/* ============================================
   4. IDENTITY SECTION
   ============================================ */

.identity {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.identity__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

@media (min-width: 768px) {
  .identity__inner {
    flex-direction: row;
  }
}

.identity__heading {
  width: 100%;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
}

@media (min-width: 768px) {
  .identity__heading {
    width: 33.333%;
  }
}

.identity__text {
  width: 100%;
  font-size: 1.5rem;
  color: #475569;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .identity__text {
    width: 66.666%;
  }
}

/* ============================================
   5. SERVICES SECTION
   ============================================ */

.services {
  padding: 6rem 0;
}

.services__header {
  margin-bottom: 4rem;
}

.services__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.services__subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  background-color: #ffffff;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  background-color: #f8fafc;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: #475569;
  line-height: 1.75;
}

/* ============================================
   6. FEATURED PRODUCT SECTION
   ============================================ */

.featured {
  padding: 6rem 0;
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
}

.featured__header {
  margin-bottom: 4rem;
}

.featured__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured__subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 48rem;
}

.featured__card {
  background-color: #1e293b;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured__card {
    padding: 3rem;
  }
}

.featured__card-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .featured__card-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #334155;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.featured__product-name {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured__product-tagline {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-style: italic;
}

.featured__product-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.featured__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.featured__preview {
  position: relative;
  height: 16rem;
  border-radius: 1rem;
  background-color: rgba(51, 65, 85, 0.5);
  border: 1px solid #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .featured__preview {
    height: 24rem;
  }
}

.featured__preview-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(71, 85, 105, 0.2), transparent);
  pointer-events: none;
}

.featured__preview-content {
  padding: 2rem;
  text-align: center;
}

.featured__preview-content svg {
  width: 6rem;
  height: 6rem;
  color: #64748b;
  margin: 0 auto 1rem;
}

.featured__preview-content p {
  color: #94a3b8;
  font-weight: 500;
}

.featured__preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured__more {
  margin-top: 2rem;
  text-align: center;
  color: #64748b;
  font-weight: 500;
}

/* ============================================
   7. WHY BAMONA SECTION
   ============================================ */

.why-bamona {
  padding: 6rem 0;
}

.why-bamona__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .why-bamona__inner {
    flex-direction: row;
  }
}

.why-bamona__left {
  width: 100%;
}

@media (min-width: 1024px) {
  .why-bamona__left {
    width: 50%;
  }
}

.why-bamona__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.why-bamona__desc {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.75;
}

.why-bamona__right {
  width: 100%;
}

@media (min-width: 1024px) {
  .why-bamona__right {
    width: 50%;
  }
}

.why-bamona__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.2s;
}

.value-item:hover {
  background-color: #f8fafc;
}

.value-item__icon {
  flex-shrink: 0;
  color: #0f172a;
}

.value-item__icon svg {
  width: 24px;
  height: 24px;
}

.value-item__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #334155;
}

/* ============================================
   8. RECRUITMENT SECTION
   ============================================ */

.recruitment {
  padding: 6rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.recruitment__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

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

.recruitment__label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 1rem;
  display: block;
}

.recruitment__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .recruitment__title {
    font-size: 3rem;
  }
}

.recruitment__text {
  color: #475569;
}

.recruitment__text p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.recruitment__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .recruitment__buttons {
    flex-direction: row;
  }
}

.recruitment__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
}

/* Image grid */
.recruitment__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.recruitment__images-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recruitment__images-col:first-child {
  padding-top: 3rem;
}

.recruitment__img {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}

.recruitment__img--tall {
  aspect-ratio: 4/5;
}

.recruitment__img--square {
  aspect-ratio: 1/1;
}

.recruitment__img--bg1 { background-color: #e2e8f0; }
.recruitment__img--bg2 { background-color: #cbd5e1; }
.recruitment__img--bg3 { background-color: #cbd5e1; }
.recruitment__img--bg4 { background-color: #94a3b8; }

.recruitment__img-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruitment__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
}

.recruitment__img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   9. CULTURE SECTION
   ============================================ */

.culture {
  padding: 6rem 0;
}

.culture__header {
  text-align: center;
  margin-bottom: 4rem;
}

.culture__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.culture__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem;
}

@media (min-width: 768px) {
  .culture__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .culture__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.culture-item__bar {
  width: 2.5rem;
  height: 0.25rem;
  background-color: #0f172a;
  margin-bottom: 1.5rem;
}

.culture-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.culture-item__desc {
  color: #475569;
  line-height: 1.75;
}

/* ============================================
   10. INDUSTRIES SECTION
   ============================================ */

.industries {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.industries__header {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.industries__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.industries__subtitle {
  font-size: 1.25rem;
  color: #475569;
}

.industries__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.industry-tag {
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: #334155;
  font-weight: 500;
  transition: border-color 0.2s;
}

.industry-tag:hover {
  border-color: #94a3b8;
}

/* ============================================
   11. TRUST CTA SECTION
   ============================================ */

.trust-cta {
  padding: 6rem 0;
  background-color: #ffffff;
}

.trust-cta__card {
  padding: 3rem;
  background-color: #0f172a;
  border-radius: 3rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .trust-cta__card {
    padding: 5rem;
  }
}

.trust-cta__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: #1e293b;
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, -50%);
}

.trust-cta__content {
  position: relative;
  z-index: 10;
}

.trust-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.trust-cta__desc {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

.trust-cta__button {
  margin-top: 3rem;
}

/* ============================================
   12. FOOTER
   ============================================ */

.site-footer {
  background-color: #ffffff;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid #f1f5f9;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer__brand {
  grid-column: 1;
}

.site-footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: block;
}

.site-footer__brand-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.75;
}

.site-footer__col-title {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.site-footer__links li {
  margin-bottom: 1rem;
}

.site-footer__links a {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #0f172a;
}

/* Footer contact block */
.site-footer__contact {
  font-style: normal;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.site-footer__contact strong {
  color: #0f172a;
  font-weight: 600;
}

.site-footer__contact a {
  color: #64748b;
  transition: color 0.2s;
}

.site-footer__contact a:hover {
  color: #0f172a;
}

/* Social icons */
.site-footer__social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.2s;
}

.social-icon:hover {
  background-color: #0f172a;
  color: #ffffff;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Footer bottom */
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid #f1f5f9;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

.site-footer__copyright {
  font-size: 0.75rem;
  color: #94a3b8;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.site-footer__legal a:hover {
  color: #0f172a;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   STATIC PAGE (Privacy, Terms, About, Contact, etc.)
   ============================================ */

.page {
  padding-bottom: 5rem;
}

.page__header {
  background-color: #f8fafc;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 3rem;
}

.page__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .page__title {
    font-size: 3rem;
  }
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}

.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1.15rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #cbd5e1;
  transition: text-decoration-color 0.2s;
}

.page-content a:hover {
  text-decoration-color: #0f172a;
}

.page-content strong {
  color: #0f172a;
  font-weight: 600;
}

.page-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background-color: #f8fafc;
  border-left: 3px solid #0f172a;
  border-radius: 4px;
  color: #475569;
}

.page-content blockquote p {
  margin: 0;
}

.page-content hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 2.5rem 0;
}
