.tm-info-section,
.tm-articles-section,
.tm-seo-short-section,
.tm-faq-section {
  max-width: 1180px;
  margin: 44px auto;
  padding: 0 18px;
}

.tm-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.tm-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: #f8fbff;
}

.tm-section-head p {
  margin: 0 auto;
  max-width: 720px;
  color: #9fb8d8;
  font-size: 15px;
  line-height: 1.7;
}

.tm-info-card,
.tm-seo-short-content,
.tm-empty-card {
  background: rgba(15, 31, 58, 0.78);
  border: 1px solid rgba(49, 211, 238, 0.16);
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  color: #bcd0ec;
  font-size: 15px;
  line-height: 1.85;
}

.tm-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tm-article-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 18px;
  text-decoration: none;
  color: #061225;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tm-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.tm-article-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.38;
  color: #061225;
}

.tm-article-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #71819b;
}

.tm-article-card img {
  width: 124px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef3f8;
}

.tm-faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.tm-faq-item {
  background: rgba(15, 31, 58, 0.78);
  border: 1px solid rgba(49, 211, 238, 0.16);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.tm-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #f8fbff;
  font-weight: 800;
  list-style: none;
}

.tm-faq-item summary::-webkit-details-marker {
  display: none;
}

.tm-faq-item summary::after {
  content: "+";
  float: right;
  color: #31d3ee;
}

.tm-faq-item[open] summary::after {
  content: "-";
}

.tm-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #a9bfdd;
  font-size: 14px;
  line-height: 1.75;
}

.tm-article-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #071b2d, #0b1227);
  color: #eaf4ff;
  padding: 48px 18px;
}

.tm-article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.tm-back-link {
  display: inline-block;
  color: #7dd3fc;
  text-decoration: none;
  margin-bottom: 24px;
  font-weight: 700;
}

.tm-article-hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.tm-article-page h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.tm-article-lead {
  color: #9fc6f4;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.tm-article-body {
  background: rgba(15, 31, 58, 0.72);
  border: 1px solid rgba(49, 211, 238, 0.14);
  border-radius: 22px;
  padding: 28px;
  color: #d5e5f8;
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 760px) {
  .tm-articles-grid {
    grid-template-columns: 1fr;
  }

  .tm-article-card {
    grid-template-columns: 1fr;
  }

  .tm-article-card img {
    width: 100%;
    height: 170px;
  }
}
