/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com/
 Description:  Child theme for GeneratePress
 Author:       Dm Tyu
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  generatepress-child
*/

/* Заголовки H2 только для главной */
.home .x-ecb h2 {
  font-size: 28px;        /* покрупнее */
  font-weight: 700;       /* жирнее */
  color: #ffffff;         /* белый */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #4cc2ff; /* линия-акцент */
  padding-bottom: 6px;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(76, 194, 255, 0.6); /* легкая подсветка */
}

/* Быстрые ссылки (пилюли) только на главной */
.home .x-ecb .quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 6px;
}

.home .x-ecb .quicklinks a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--ink);
  text-decoration: none;              /* убираем подчёркивание */
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;                 /* компактнее */
}

.home .x-ecb .quicklinks a:hover {
  background: rgba(76,194,255,.12);    /* как в дизайн-системе */
  border-color: var(--accent);
}

.home .x-ecb .quicklinks a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Мобильная строка со скроллом (опционально, если много ссылок) */
@media (max-width: 560px){
  .home .x-ecb .quicklinks{
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
}

/* Заголовки H3 только на главной */
.home .x-ecb h3 {
  font-size: 22px;          /* чуть меньше чем H2 */
  font-weight: 600;         /* полужирный */
  color: #dfe6ef;           /* светлый оттенок, чтобы отличался от текста */
  margin-top: 28px;
  margin-bottom: 14px;
  border-left: 4px solid #4cc2ff; /* акцентная линия слева */
  padding-left: 10px;
  line-height: 1.4;
}
