:root {
  --ms-text: #22324a;
  --ms-muted: #66768a;
  --ms-primary: #556b86;
  --ms-dark: #1f2f45;
  --ms-bg: #f5f8fc;
  --ms-white: #ffffff;
  --ms-line: rgba(31, 47, 69, 0.08);
  --ms-line-strong: rgba(85, 107, 134, 0.18);
  --ms-glow: 0 0 0 1px rgba(85, 107, 134, 0.08), 0 18px 50px rgba(31, 47, 69, 0.10), 0 0 40px rgba(85, 107, 134, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Poppins, Arial, sans-serif;
  color: var(--ms-text);
  background: #eef4f9;
}

body {
  margin: 0;
}

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

.ms-discover-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fbfcfe 0%, #eef4f9 100%);
  overflow: visible;
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.ms-discover-section .wrap {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 5;
}

.ms-discover-section .grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.ms-discover-section .hero-copy {
  position: relative;
  z-index: 10;
  animation: msFadeUp 1s ease both;
  animation-delay: .2s;
}

.ms-discover-section .chip {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ms-primary);
  margin-bottom: 8px;
}

.ms-discover-section h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
  margin: 16px 0;
  background: linear-gradient(135deg, #1f2f45, #5d7490);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-discover-section .subtitle {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ms-muted);
  max-width: 600px;
  margin: 0 0 8px 0;
}

.ms-discover-section .cred-line {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #8898aa;
  font-weight: 500;
}

.ms-discover-section .btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

.ms-discover-section .btn {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.ms-discover-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 47, 69, 0.12);
}

.ms-discover-section .btn-primary {
  background: linear-gradient(135deg, #5d7490, #1f2f45);
  color: #ffffff;
}

.ms-discover-section .btn-secondary {
  background: #ffffff;
  border: 1px solid var(--ms-line);
  color: var(--ms-dark);
}

.ms-discover-section .card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--ms-glow);
  border: 1px solid var(--ms-line-strong);
  animation: msFadeFloat 1.2s ease both;
  animation-delay: .4s;
  z-index: 1;
}

.ms-discover-section .card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(85, 107, 134, 0.18), rgba(255, 255, 255, 0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ms-discover-section .hero-photo-wrap {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ms-discover-section .hero-photo-wrap img {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
  display: block;
  transition: transform .4s ease;
}

.ms-discover-section .card:hover img {
  transform: scale(1.03);
}

@keyframes msFadeFloat {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes msFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ms-discover-section {
    padding: 60px 16px;
  }

  .ms-discover-section .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ms-discover-section .grid > div:nth-child(1) {
    order: 2;
  }

  .ms-discover-section .grid > div:nth-child(2) {
    order: 1;
  }

  .ms-discover-section h1 {
    font-size: 36px;
  }

  .ms-discover-section .hero-photo-wrap {
    max-width: 320px;
  }

  .ms-discover-section .card {
    padding: 14px;
    border-radius: 24px;
  }

  .ms-discover-section .card::before {
    border-radius: 24px;
  }

  .ms-discover-section .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ms-discover-section .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .ms-discover-section {
    padding: 52px 14px;
  }

  .ms-discover-section h1 {
    font-size: 30px;
  }

  .ms-discover-section .subtitle {
    font-size: 15px;
    line-height: 1.8;
  }

  .ms-discover-section .hero-photo-wrap {
    max-width: 260px;
  }
}

.issue-archive {
  padding: 26px 20px 76px;
  background: #eef4f9;
}

.issue-archive .wrap {
  max-width: 1200px;
  margin: auto;
}

.issue-archive h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--ms-dark);
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.issue-card {
  display: block;
  min-height: 142px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ms-line);
  color: var(--ms-dark);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(31, 47, 69, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(31, 47, 69, 0.12);
}

.issue-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--ms-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.issue-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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