/* Service content (Figma: thecontent) */
.service-thecontent {
  padding: 60px 0;
}

.service-thecontent__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Gutenberg Columns -> 2 columns like Figma (648 + 24 + 648) */
.service-thecontent .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch; /* equal height columns */
  margin: 0;
}

.service-thecontent .wp-block-column {
  margin: 0;
  min-width: 0;
}

/* Local typography overrides for SEO-safe headings */
.service-thecontent h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-thecontent h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.service-thecontent h4 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* Keep default colors */
.service-thecontent h2,
.service-thecontent h3,
.service-thecontent h4 {
  color: var(--berloga-text);
}

/* Intro paragraph (first block above columns) — normal flow, just remove huge bottom margins */
.service-thecontent p {
  margin-bottom: 8px;
}

.service-thecontent p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .service-thecontent__container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .service-thecontent .wp-block-columns {
    grid-template-columns: 1fr;
  }
}

