.elementor-602 .elementor-element.elementor-element-f146adc{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-092fb16 */:root {
  --gs-primary: #0056b3;
  --gs-primary-hover: #004494;
  --gs-text: #333333;
  --gs-text-light: #555555;
  --gs-bg-light: #f8f9fa;
  --gs-border: #e9ecef;
  --gs-danger-bg: #fff0f0;
  --gs-danger-border: #ffcccc;
  --gs-danger-text: #d9534f;
  --gs-radius: 8px;
  --gs-font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Базові стилі */
.gs-article {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--gs-font-main);
  color: var(--gs-text);
  line-height: 1.7;
  padding: 20px;
}

.gs-article__header {
  margin-bottom: 30px;
  text-align: center;
}

.gs-article__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gs-article__lead {
  font-size: 1.2rem;
  color: var(--gs-text-light);
  max-width: 700px;
  margin: 0 auto;
}

.gs-article__content h2 {
  font-size: 1.6rem;
  color: #222;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--gs-border);
  padding-bottom: 10px;
  line-height: 1.3;
}

.gs-article__content p {
  margin-bottom: 16px;
}

.gs-article__list,
.gs-article__steps {
  margin-bottom: 24px;
  padding-left: 20px;
}

.gs-article__list li,
.gs-article__steps li {
  margin-bottom: 10px;
}

.gs-article__list--check li {
  list-style-type: none;
  position: relative;
}

.gs-article__list--check li::before {
  content: "✓";
  color: #28a745;
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* Блок "Чого робити не можна" (Danger Alert) */
.gs-article__alert-box {
  background-color: var(--gs-danger-bg);
  border: 1px solid var(--gs-danger-border);
  border-radius: var(--gs-radius);
  padding: 25px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.gs-alert__icon {
  font-size: 2rem;
  line-height: 1;
}

.gs-alert__text h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--gs-danger-text);
}

.gs-alert__text ul {
  margin-bottom: 0;
}

/* Виділений блок */
.gs-article__highlight {
  background-color: var(--gs-bg-light);
  padding: 30px;
  border-radius: var(--gs-radius);
  margin: 35px 0;
  border: 1px solid var(--gs-border);
}

.gs-article__highlight h2 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

/* CTA Banner */
.gs-cta-banner {
  background-color: var(--gs-primary);
  color: #fff;
  padding: 30px 20px;
  border-radius: var(--gs-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.15);
}

.gs-cta-banner__text {
  margin-bottom: 20px;
  width: 100%;
}

.gs-cta-banner h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.3;
}

.gs-cta-banner p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.gs-cta-banner__btn {
  display: inline-block;
  background-color: #fff;
  color: var(--gs-primary);
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  width: auto; 
}

.gs-cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--gs-primary-hover);
}

/* =========================================
   АДАПТИВНІСТЬ (Медіа-запити)
   ========================================= */

@media (min-width: 768px) {
  .gs-cta-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    padding: 40px 30px;
  }

  .gs-cta-banner__text {
    margin-bottom: 0;
    padding-right: 30px;
    flex: 1;
  }

  .gs-cta-banner h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .gs-article {
     padding: 15px; 
  }

  .gs-article__title {
    font-size: 1.75rem; 
  }

  .gs-article__lead {
    font-size: 1.05rem;
  }

  .gs-article__content h2 {
    font-size: 1.35rem;
  }

  .gs-article__alert-box {
    padding: 20px 15px; 
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .gs-alert__icon {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .gs-article__highlight {
    padding: 20px 15px; 
  }
}/* End custom CSS */