@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #08111f;
  --panel: #0f1f35;
  --stroke: #1f2f46;
  --accent: #f5a524;
  --accent-soft: rgba(245, 165, 36, 0.15);
  --muted: #9fb3c8;
  --text: #eaf1ff;
  --shadow: 0 20px 60px rgba(4, 12, 26, 0.35);
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(245, 165, 36, 0.07), transparent 28%),
              radial-gradient(circle at 80% 15%, rgba(127, 209, 174, 0.09), transparent 25%),
              var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

.content-shell {
  max-width: 1180px;
  margin: 30px auto 50px;
  padding: 0 28px;
}

.content {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.8rem;
}

.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.text-section h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.text-section h4 {
  font-size: 20px;
  margin: 10px 0 6px;
}

.text-section p {
  color: var(--muted);
  font-size: 18px;
}

.image-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
}

.image-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 700;
  font-size: 14px;
}

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