.content-page {
  max-width: 1040px;
  margin: 42px auto;
  padding: 0 20px;
  color: #333;
}

.content-article {
  max-width: 820px;
}

.content-hero {
  text-align: center;
  padding: 48px 32px 36px;
  background: linear-gradient(145deg, #f5f8ff 0%, #fff8f2 100%);
  border: 1px solid #e5eaf3;
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(39, 68, 108, 0.08);
}

.content-kicker {
  margin: 0 0 10px;
  color: #6b55d9;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero h1,
.content-article h1 {
  color: #26364a;
  line-height: 1.15;
}

.content-hero h1 {
  max-width: 780px;
  margin: 0 auto 18px;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
}

.content-hero > p:not(.content-kicker) {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #526174;
  font-size: 1.16rem;
  line-height: 1.7;
}

.content-cover {
  display: block;
  width: 100%;
  height: auto;
  margin: 30px 0 0;
  border-radius: 14px;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
}

.content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: #007bff;
  border: 1px solid #007bff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.content-button:hover {
  color: #fff;
  background: #005fc7;
  text-decoration: none;
}

.content-button.secondary {
  color: #26364a;
  background: #fff;
  border-color: #cfd8e5;
}

.content-button.secondary:hover {
  color: #007bff;
  background: #f8fbff;
}

.content-section {
  margin-top: 54px;
}

.content-section h2,
.content-article h2 {
  color: #007bff;
  line-height: 1.25;
}

.content-section > p,
.content-article p,
.content-article li {
  font-size: 1.06rem;
  line-height: 1.72;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.content-card {
  padding: 22px;
  background: #f8f9fa;
  border: 1px solid #e3e7ec;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(30, 55, 85, 0.05);
}

.content-card h3 {
  margin: 0 0 10px;
  color: #26364a;
  font-size: 1.2rem;
}

.content-card p {
  margin: 0 0 14px;
  color: #586575;
  font-size: 1rem;
  line-height: 1.6;
}

.content-card a {
  font-weight: 700;
}

.content-note,
.content-tip {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  background: #f3f8ff;
}

.content-tip {
  border-left-color: #28a745;
  background: #f3fbf5;
}

.content-note p,
.content-tip p {
  margin: 0;
}

.content-code {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0;
  padding: 10px 14px;
  overflow-wrap: anywhere;
  color: #26364a;
  background: #eef3ff;
  border: 1px solid #d8e1f5;
  border-radius: 6px;
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
}

.content-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
}

.content-table {
  min-width: 620px;
  margin: 0;
}

.content-table th,
.content-table td {
  text-align: left;
  vertical-align: top;
}

.content-table th {
  white-space: nowrap;
}

.content-breadcrumbs {
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 0.95rem;
}

.content-article h1 {
  margin: 0 0 12px;
  text-align: left;
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.content-meta {
  margin-bottom: 26px;
  color: #6b7280;
  font-size: 0.95rem;
}

.content-article .content-cover {
  margin: 0 0 32px;
}

.content-related {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid #e1e5ea;
}

.content-final-cta {
  margin-top: 48px;
  padding: 30px 22px;
  text-align: center;
  background: #f4f8ff;
  border-radius: 12px;
}

.content-final-cta h2 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .content-page {
    margin: 24px auto;
    padding: 0 14px;
  }

  .content-hero {
    padding: 36px 18px 24px;
    border-radius: 12px;
  }

  .content-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .content-button {
    width: 100%;
    box-sizing: border-box;
  }
}
