/* ==========================================================
   MASSAGE ARMY SPA - MEDIA REVIEW COMPONENT (KUMPARAN)
   ========================================================== */

:root {
  --azure-blue: #3981d6;
  --sunset-orange: #d5893b;
  --linen-white: #f5ecdb;
  --peach-bg: #ffdeaa;
}

/* BASE CONTAINER DESKTOP */
.media-container {
  background: #ffffff;
  border: 2px solid var(--azure-blue);
  padding: 36px 28px;
  border-radius: 20px;
  text-align: center;
  max-width: 720px;
  margin: 36px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 25px rgba(57, 129, 214, 0.08);
  position: relative;
  box-sizing: border-box;
}

.media-badge {
  background: var(--azure-blue);
  color: white;
  font-size: 11px;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.media-quote {
  font-style: italic;
  font-size: 17px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}

.media-quote span {
  color: var(--azure-blue);
  font-size: 32px;
  line-height: 0;
  vertical-align: middle;
  font-family: serif;
}

.btn-kumparan {
  display: inline-block;
  padding: 12px 28px;
  background: var(--sunset-orange);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(213, 137, 59, 0.25);
}

.btn-kumparan:hover {
  background: var(--azure-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(57, 129, 214, 0.35);
  color: white;
}

.domain-update-box {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed #e2e8f0;
  font-size: 12.5px;
  color: #666;
  line-height: 1.5;
}

.domain-update-box b {
  color: #333;
}

.domain-link {
  color: var(--azure-blue);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  display: inline-block;
  margin-top: 4px;
}

.domain-link:hover {
  text-decoration: underline;
  color: var(--sunset-orange);
}

/* OPTIMASI KHUSUS MOBILE (COMPACT) */
@media (max-width: 600px) {
  .media-container {
    padding: 20px 16px;
    margin: 16px 12px;
    border-radius: 14px;
    border-width: 1.5px;
  }

  .media-badge {
    font-size: 10px;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .media-quote {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .media-quote span {
    font-size: 24px;
  }

  .btn-kumparan {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    font-size: 12.5px;
  }

  .domain-update-box {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 11px;
    line-height: 1.4;
  }

  .domain-link {
    font-size: 11px;
    margin-top: 2px;
  }
}