/* ======================================================
   MOA BLOGS — Unique Prefixed Styles (moa-*)
   Blog Article Page: Cosmetic Gynaecology Simulation Era
   ====================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* ---------- Top Announcement Bar ---------- */
.moa-top-announcement-bar {
  width: 100%;
  height: 36px;
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
}

.moa-announcement-inner {
  font-size: 11px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
  width: 95%;
  max-width: 1550px;
  margin: 0 auto;
}

.moa-highlight-red {
  color: #ee343b;
  font-weight: 700;
}

/* ---------- Header ---------- */
.moa-site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  height: 100px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}

.moa-header-inner {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 24px;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.moa-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.moa-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  /* Logo retains original brand colors */
}

/* Two-row Header Nav and Actions */
.moa-header-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.moa-header-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.moa-header-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Refer & Earn */
.moa-refer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ee343b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.moa-refer-link:hover {
  opacity: 0.85;
}

.moa-refer-icon {
  flex-shrink: 0;
}

/* Login/Signup Buttons */
.moa-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #ffffff;
  background: #ee343b;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.moa-btn-login:hover {
  background: #c9222a;
  transform: translateY(-1px);
}

.moa-btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #ffffff;
  background: #111111;
  border: 1px solid #111111;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.moa-btn-signup:hover {
  background: #222222;
  border-color: #222222;
  transform: translateY(-1px);
}

/* Courses Dropdown Label */
.moa-courses-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.moa-courses-dropdown:hover {
  color: #ee343b;
}

.moa-chevron-down {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Search Container (Pill Shaped with Red Button) */
.moa-search-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  overflow: hidden;
  height: 36px;
  width: 260px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.moa-search-input {
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 13px;
  width: 100%;
  color: #333;
  background: transparent;
}

.moa-search-input::placeholder {
  color: #aaa;
}

.moa-search-submit-btn {
  background: #ee343b;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.moa-search-submit-btn:hover {
  background: #c9222a;
}

/* Mobile Nav actions */
.moa-mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding: 10px 16px 16px;
}

.moa-mobile-nav-actions .moa-btn-login,
.moa-mobile-nav-actions .moa-btn-signup {
  flex: 1;
  justify-content: center;
  padding: 8px 10px;
  font-size: 0.8rem;
}

/* Hamburger */
.moa-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.moa-hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #111111;
  /* Changed to dark for white header */
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.moa-hamburger-btn.moa-is-open .moa-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.moa-hamburger-btn.moa-is-open .moa-hamburger-line:nth-child(2) {
  opacity: 0;
}

.moa-hamburger-btn.moa-is-open .moa-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.moa-mobile-nav {
  display: none;
  background: #111111;
  border-top: 1px solid #222;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.moa-mobile-nav.moa-nav-open {
  max-height: 320px;
}

.moa-mobile-nav-list {
  padding: 6px 0 10px;
}

.moa-mobile-nav-list li {
  border-bottom: 1px solid #1e1e1e;
}

.moa-mobile-nav-link {
  display: block;
  padding: 8px 16px;
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.moa-mobile-nav-link:hover {
  color: #ee343b;
  padding-left: 24px;
}

/* ---------- Article Main ---------- */
.moa-article-main {
  background: #000000;
  padding-bottom: 60px;
  min-height: 100vh;
}

/* Red Navigation / Back Bar */
.moa-back-bar {
  background: #ee343b;
  height: 100px;
  display: flex;
  align-items: center;
  width: 100%;
}

.moa-back-bar-inner {
  width: 100%;
}

.moa-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  transition: transform 0.2s;
}

.moa-back-link:hover {
  transform: translateX(-4px);
}

.moa-article-container {
  max-width: 1522px;
  width: 100%;
  margin: 40px auto 0 auto;
  background: #ffffff;
  padding: 40px 100px 30px 100px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* ---------- Article Header ---------- */
.moa-article-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 16px;
}

.moa-article-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.moa-article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}

.moa-meta-left-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.moa-article-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.moa-author-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moa-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moa-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.moa-article-date {
  font-size: 12px;
  color: #555555;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.moa-article-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.moa-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.moa-stat-icon {
  flex-shrink: 0;
}

.moa-stat-count {
  font-weight: 700;
  color: #ee343b;
}

.moa-article-social-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moa-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  transition: transform 0.2s, opacity 0.2s;
}

.moa-share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.moa-share-fb {
  background: #1877F2;
}

.moa-share-x {
  background: #000000;
}

.moa-share-yt {
  background: #FF0000;
}

.moa-share-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.moa-share-li {
  background: #0A66C2;
}

/* ---------- Image Card Design ---------- */
.moa-image-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 16px auto;
}

.moa-card-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f7f7f7;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.moa-card-media:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.moa-card-img {
  width: 100%;
  height: 650px;
  /* Increased standard image height for a grander aesthetic */
  object-fit: fill;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.moa-card-media:hover .moa-card-img {
  transform: scale(1.04);
}

.moa-card-logo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  z-index: 2;
}

.moa-card-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Card Logo Color Variants */
.moa-logo-light {
  filter: invert(1) hue-rotate(180deg);
}

.moa-logo-dark {
  /* Original brand colors (red plus, black text) */
}

.moa-card-caption {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  font-weight: 600 !important;
  text-align: left;
  margin: 0;
  padding: 0 4px;
}

/* Hero Card Specifics */
.moa-hero-card {
  margin-bottom: 18px;
}

.moa-hero-card .moa-card-img {
  height: 640px;
  /* Increased hero image height for cinematic scale */
}

.moa-hero-card .moa-card-logo-overlay {
  top: 24px;
  right: 24px;
}

.moa-hero-card .moa-card-logo {
  height: 36px;
}

.moa-hero-card .moa-card-caption {
  font-size: 1rem;
  color: #000000;
  line-height: 1.55;
  font-weight: 600;
}

/* ---------- Article Body ---------- */
.moa-article-body {
  max-width: 100%;
  margin: 0 auto;
}

.moa-article-intro {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 16px;
  padding: 0;
  border-left: none;
  background: #ffffff;
}

.moa-article-intro a {
  color: #0056b3;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.moa-article-intro a:hover {
  color: #ee343b;
}

/* ---------- Article Sections ---------- */
.moa-article-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eeeeee;
}

.moa-article-section:last-of-type {
  border-bottom: none;
}

.moa-section-alt {
  background: transparent;
}

.moa-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.moa-section-label-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.moa-section-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ee343b;
  text-transform: uppercase;
}

.moa-section-heading {
  font-size: clamp(1.35rem, 3.2vw, 40px);
  font-weight: 800;
  color: #000000;
  line-height: 1.3;
  margin-top: 8px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

/* Flex layout that stacks elements vertically */
.moa-section-layout {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.moa-section-layout-reverse {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.moa-article-body p,
.moa-article-section p {
  font-size: 1rem;
  line-height: 1.55;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Red square bullet list for article content */
.moa-bullet-list-red {
  list-style: none;
  padding-left: 8px;
  margin-bottom: 12px;
  margin-top: -6px;
}

.moa-bullet-list-red li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.45;
  color: #000000;
  font-weight: 500;
}

.moa-bullet-list-red li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: #ee343b;
}

/* Note: Unified image card styles are handled by .moa-image-card */

/* ---------- Conclusion ---------- */
.moa-article-conclusion {
  margin-top: 18px;
  background: #0a0a0a;
  border-radius: 10px;
  padding: 16px 24px;
  position: relative;
  overflow: hidden;
}

.moa-article-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ee343b;
}

.moa-conclusion-inner {}

.moa-conclusion-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.moa-article-conclusion p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #b0b0b0;
}

/* ---------- Footer ---------- */
.moa-site-footer {
  background: #000000;
  color: #ffffff;
  padding-top: 60px;
  position: relative;
  border-top: 1px solid #111;
  margin-top: 0;
}

.moa-footer-main {
  max-width: 1550px;
  width: 95%;
  margin: 0 auto;
  padding: 0 24px 40px 24px;
}

.moa-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.2fr 1.5fr;
  gap: 40px;
}

.moa-footer-col {
  display: flex;
  flex-direction: column;
}

.moa-footer-col-right {
  align-items: flex-start;
}

.moa-footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.moa-footer-link-list li {
  margin-bottom: 0;
}

.moa-footer-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.moa-footer-link:hover {
  color: #ee343b;
  padding-left: 4px;
}

.moa-footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.moa-footer-social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.moa-footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
}

.moa-footer-social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.moa-footer-fb {
  background: #1877F2;
}

.moa-footer-x {
  background: #000000;
  border: 1px solid #333;
}

.moa-footer-yt {
  background: #FF0000;
}

.moa-footer-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.moa-footer-li {
  background: #0A66C2;
}

.moa-app-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.moa-app-badge-link {
  display: block;
  transition: transform 0.2s;
}

.moa-app-badge-link:hover {
  transform: scale(1.03);
}

.moa-app-badge-svg {
  display: block;
}

.moa-footer-brand-logo-wrap {
  margin-top: 10px;
}

.moa-footer-brand-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.moa-mt-24 {
  margin-top: 24px;
}

/* Newsletter Updates Bar */
.moa-footer-newsletter-bar {
  margin-top: 40px;
  max-width: 600px;
}

.moa-newsletter-heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.moa-newsletter-form {
  display: flex;
  border: 1px solid #333;
  border-radius: 4px;
  overflow: hidden;
  height: 42px;
}

.moa-newsletter-input {
  flex: 1;
  background: #ffffff;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  color: #000000;
}

.moa-newsletter-submit-btn {
  background: #ee343b;
  color: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.05em;
}

.moa-newsletter-submit-btn:hover {
  background: #c9222a;
}

/* Mascot character badge */
.moa-footer-mascot {
  position: absolute;
  bottom: 50px;
  right: 40px;
  z-index: 10;
  width: 90px;
  height: 90px;
  animation: floatMascot 4s ease-in-out infinite;
}

.moa-mascot-img {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes floatMascot {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Copyright Bar */
.moa-footer-copyright-bar {
  background: #111111;
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid #222;
}

.moa-footer-copyright-text {
  font-size: 12px;
  color: #888888;
  margin: 0;
  font-weight: 500;
}

/* ---------- Floating Buttons ---------- */
.moa-floating-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 1000;
}

.moa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.moa-float-btn:hover {
  transform: translateX(-4px);
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.35);
}

.moa-float-whatsapp {
  background: #25D366;
}

.moa-float-email {
  background: #25D366;
  /* Both WhatsApp and Email floating buttons are green */
}

/* ---------- Author Bio & Stats at Bottom of Article ---------- */
.moa-written-by-heading {
  display: block;
  font-size: 14px !important;
  font-weight: 600;
  color: #000000;
  /* text-transform: uppercase; */
  margin-top: 12px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.moa-bottom-author-card {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-bottom: 10px;
}

.moa-bottom-author-img {
  width: 93px;
  height: 93px;
  border-radius: 10px;
  object-fit: cover;
}

.moa-bottom-author-info {
  display: flex;
  flex-direction: column;
}

.moa-bottom-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.moa-bottom-author-title {
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  line-height: normal;
}

.moa-bottom-meta-row {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 6px 0;
  margin-bottom: 12px;
}

.moa-course-btn-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.moa-btn-course {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  background: #ee343b;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.moa-btn-course:hover {
  background: #c9222a;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(238, 52, 59, 0.25);
}

/* ---------- Like Button ---------- */
.moa-like-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: #000000;
}

.moa-like-btn .moa-like-icon {
  transition: transform 0.15s ease;
}

.moa-like-btn:hover .moa-like-icon {
  transform: scale(1.12);
}

.moa-like-btn.liked .moa-like-icon {
  animation: moa-like-pop 0.25s ease;
}

@keyframes moa-like-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* ---------- Comments Section ---------- */
.moa-comments-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.moa-comments-heading-count {
  color: #777777;
  font-weight: 500;
}

.moa-comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #eeeeee;
  border-radius: 10px;
}

.moa-comment-form-row {
  width: 100%;
}

.moa-comment-input,
.moa-comment-textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #111111;
  background: #ffffff;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.moa-comment-input:focus,
.moa-comment-textarea:focus {
  outline: none;
  border-color: #ee343b;
  box-shadow: 0 0 0 3px rgba(238, 52, 59, 0.1);
}

.moa-comment-form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.moa-comment-error {
  font-size: 13px;
  color: #d92d20;
  flex: 1;
}

.moa-comment-submit {
  border: none;
  cursor: pointer;
}

.moa-comment-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.moa-comment-already {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #f0faf4;
  border: 1px solid #c9ebd6;
  border-radius: 10px;
  color: #1a8a4a;
}

.moa-comment-already svg {
  flex-shrink: 0;
}

.moa-comment-already p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #1a8a4a;
}

.moa-comment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.moa-comment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.moa-comment-item:hover {
  border-color: #eeeeee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.moa-comment-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ee343b;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.moa-comment-content {
  flex: 1;
  min-width: 0;
}

.moa-comment-item-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.moa-comment-author {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
}

.moa-comment-date {
  font-size: 12px;
  color: #999999;
  margin-left: auto;
}

.moa-comment-pending-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #b8740a;
  background: #fff3da;
  border-radius: 4px;
  padding: 2px 8px;
}

.moa-comment-body {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  word-wrap: break-word;
}

.moa-comment-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 20px;
  text-align: center;
  color: #999999;
  background: #fafafa;
  border: 1px dashed #e0e0e0;
  border-radius: 10px;
}

.moa-comment-empty p {
  margin: 0;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Responsive ---------- */

/* Large Tablet */
@media (max-width: 1024px) {
  .moa-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .moa-section-layout {
    gap: 20px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .moa-header-nav-actions {
    display: none;
  }

  .moa-hamburger-btn {
    display: flex;
  }

  .moa-mobile-nav {
    display: block;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
  }

  .moa-mobile-nav-link {
    color: #111111;
  }

  .moa-mobile-nav-list li {
    border-bottom: 1px solid #eeeeee;
  }

  .moa-article-title {
    font-size: 32px;
  }

  .moa-hero-card .moa-card-img {
    height: 400px;
  }

  .moa-card-img {
    height: 320px;
  }

  .moa-section-layout,
  .moa-section-layout.moa-section-layout-reverse {
    flex-direction: column;
    gap: 20px;
  }

  .moa-article-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .moa-meta-left-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .moa-article-stats {
    gap: 20px;
  }

  .moa-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .moa-article-conclusion {
    padding: 20px 24px;
  }

  .moa-article-intro {
    padding: 16px 20px;
  }

  .moa-floating-buttons {
    right: 0;
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .moa-footer-mascot {
    width: 70px;
    height: 70px;
    bottom: 80px;
    right: 20px;
  }
}

/* Mobile Large */
@media (max-width: 560px) {
  .moa-site-header {
    height: 64px;
  }

  .moa-header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .moa-logo-img {
    height: 38px;
  }

  .moa-article-main {
    padding-top: calc(36px + 64px);
    padding-bottom: 40px;
  }

  .moa-article-container {
    padding: 20px 16px;
    margin: 20px 8px 0 8px;
  }

  .moa-article-title {
    font-size: 1.5rem;
  }

  .moa-hero-card .moa-card-img {
    height: 280px;
  }

  .moa-hero-card .moa-card-logo-overlay {
    top: 12px;
    right: 12px;
  }

  .moa-hero-card .moa-card-logo {
    height: 20px;
  }

  .moa-article-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .moa-card-img {
    height: 240px;
  }

  .moa-article-stats {
    gap: 8px;
  }

  .moa-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .moa-footer-main {
    padding: 0 16px 40px 16px;
  }

  .moa-footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .moa-float-btn {
    width: 38px;
    height: 38px;
  }

  .moa-footer-mascot {
    display: none;
    /* Hide mascot on small mobiles to prevent overlaying elements */
  }
}

/* Mobile Small */
@media (max-width: 380px) {
  .moa-article-title {
    font-size: 1.3rem;
  }

  .moa-section-heading {
    font-size: 1.1rem;
  }

  .moa-article-social-share {
    flex-wrap: wrap;
  }
}