.codeconv-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 18px 56px;
  color: #1b2433;
}

.codeconv-hero {
  background: linear-gradient(135deg, #f1fbf8 0%, #eef4ff 100%);
  border: 1px solid #d7e5e1;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(27, 36, 51, 0.08);
}

.codeconv-kicker {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0c6b62;
}

.codeconv-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.codeconv-intro {
  max-width: 860px;
  margin-top: 16px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.codeconv-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.codeconv-chip-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #1b2433;
  color: #fff;
  font-weight: 700;
}

.codeconv-section-links,
.codeconv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.codeconv-link-card,
.codeconv-card,
.codeconv-content {
  background: #fff;
  border: 1px solid #dde5ee;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(27, 36, 51, 0.06);
}

.codeconv-link-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.codeconv-link-card:hover {
  transform: translateY(-2px);
  border-color: #0c6b62;
  box-shadow: 0 18px 38px rgba(27, 36, 51, 0.1);
}

.codeconv-link-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0c6b62 0%, #2f8f84 100%);
  color: #fff;
  font-size: 1.25rem;
}

.codeconv-link-card h2,
.codeconv-card h2,
.codeconv-content h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.codeconv-card p,
.codeconv-content p {
  line-height: 1.7;
}

.codeconv-card label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 700;
}

.codeconv-card input {
  width: 100%;
  border: 1px solid #bfd0df;
  border-radius: 14px;
  padding: 12px 14px;
  background: #f7fbff;
}

.codeconv-card button {
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  background: #0c6b62;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.codeconv-result {
  margin-top: 16px;
  min-height: 72px;
  border-radius: 16px;
  border: 1px solid #d7e3eb;
  background: #f3faf9;
  padding: 16px;
}

.codeconv-result strong {
  display: block;
  margin-bottom: 8px;
  color: #0c6b62;
}

.codeconv-result table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.codeconv-result th,
.codeconv-result td {
  border: 1px solid #dbe4ed;
  padding: 9px 10px;
  text-align: center;
}

.codeconv-result th {
  background: #eef7f5;
}

.codeconv-result svg {
  width: 100%;
  height: auto;
  margin-top: 14px;
  border: 1px solid #d9e4ef;
  border-radius: 14px;
  background: #fff;
}

.codeconv-content {
  margin-top: 24px;
}

.codeconv-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.codeconv-archive-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eef7f5;
  border: 1px solid #c8e4de;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #0c6b62;
  font-weight: 600;
}

.codeconv-archive-grid a i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: #0c6b62;
}

@media (max-width: 920px) {
  .codeconv-section-links,
  .codeconv-grid,
  .codeconv-archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .codeconv-page {
    padding: 20px 14px 44px;
  }

  .codeconv-hero,
  .codeconv-link-card,
  .codeconv-card,
  .codeconv-content {
    padding: 18px;
    border-radius: 18px;
  }
}
