:root {
  --page-bg: #f3f3f3;
  --section-bg: #e3e3e8;
  --text-main: #222;
  --accent: #73d8b4;
  --accent-text: #0f3f2e;
  --border: #6f6f74;
}

* {
  box-sizing: border-box;
}

.page-frame {
  padding: 22px;
}

.mk-page {
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  background: transparent;
  padding: 0;
}

.panel {
  background: var(--section-bg);
  padding: 16px;
  border: 1px solid #bfbfc5;
}

.panel + .panel {
  margin-top: 24px;
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
}

p {
  margin: 0;
  font-size: 16px;
}

.cta-row {
  margin-top: 48px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  padding: 12px 28px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--accent-text);
  background: var(--accent);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-button::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("../images/common/icon-mail.svg") center center / contain no-repeat;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
  opacity: 0.96;
}

.cta-button:focus-visible {
  outline: 2px solid rgba(15, 63, 46, 0.28);
  outline-offset: 2px;
}

.mail-icon,
.cta-icon-image {
  display: none;
}

.issues-list {
  display: flex;
  flex-direction: column;
}

.issue-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.issue-item + .issue-item {
  border-top: 1px solid var(--border);
}

.issue-left,
.issue-right {
  min-height: 240px;
}

.issue-left {
  position: relative;
  width: 360px;
  overflow: hidden;
  isolation: isolate;
}

.issue-image {
  position: absolute;
  inset: -4px;
  background-image: var(--issue-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(2px);
  transform: scale(1.01);
}

.issue-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.issue-left h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin: 0;
  padding: 0 16px;
  text-align: left;
  font-size: 23px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #fff;
  white-space: normal;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.6),
    0 0 2px rgba(0, 0, 0, 0.35);
}

.issue-right {
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.issue-right p {
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.sub-links {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.sub-links li {
  margin-top: 8px;
  font-size: 16px;
}

.sub-links li::before {
  content: "▶";
  color: #1ca15e;
  margin-right: 8px;
}

.sub-links a {
  color: inherit;
  text-decoration: none;
}

.sub-links a:hover {
  text-decoration: underline;
}

.illustration {
  width: 230px;
  max-width: 100%;
  aspect-ratio: 1 / 1.05;
  background: var(--illust) center center / contain no-repeat;
  justify-self: center;
  align-self: center;
}

.issue-item-first {
  padding-top: 0;
}

@media (max-width: 767px) {
  .page-frame {
    padding: 10px;
  }

  .panel {
    padding: 14px;
  }

  .panel + .panel {
    margin-top: 16px;
  }

  h2 {
    font-size: 21px;
  }

  p,
  .sub-links li {
    font-size: 15px;
    line-height: 1.7;
  }

  .issue-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0;
  }

  .issue-left,
  .issue-right {
    min-height: auto;
  }

  .issue-left {
    width: 100%;
    min-height: 220px;
  }

  .issue-left h3 {
    font-size: 22px;
    padding: 16px;
  }

  .issue-right {
    padding: 0 16px 4px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    min-width: 0;
    width: 100%;
    font-size: 18px;
    padding: 12px 20px;
  }

  .illustration {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    justify-self: auto;
  }
}
