/* ================================================================
   skills.css — секция Навыки на главной
   ================================================================ */

.fp-skills {
    background: #0b0c0f;
    padding-bottom: 120px;
}

/* ── Внутренний контейнер ────────────────────────────────────── */
.fp-skills__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 60px 140px 0;
    flex-wrap: wrap;
}

/* ── Заголовок ───────────────────────────────────────────────── */
.fp-skills__title {
    color: var(--white);
    font-family: var(--h2-font-family);
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-font-weight);
    flex-shrink: 0;
    width: 100%;
}

/* ── Группы (три колонки) ────────────────────────────────────── */
.fp-skills__groups {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
    min-width: 0;
    z-index:3;
}

.fp-skills__group {
    background: #161820;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Заголовок группы + линия */
.fp-skills__group-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-skills__group-title {
    color: var(--active);
    font-family: var(--text2-caps-font-family);
    font-size: var(--text2-caps-font-size);
    font-weight: 600;
    text-transform: uppercase;
}

.fp-skills__group-line {
    display: block;
    height: 0.5px;
    background: var(--active);
    width: 100%;
}

/* Список навыков */
.fp-skills__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-skills__item {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    color: var(--text);
    font-family: var(--text2-font-family);
    font-size: var(--text2-font-size);
    font-weight: var(--text2-font-weight);
}

.fp-skills__item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* ── Адаптив ─────────────────────────────────────────────────── */
@media (max-width: 1440px) {
    .fp-skills__inner { padding-inline: 80px; }
    .fp-skills__title {  font-size: 48px; }
}

@media (max-width: 1200px) {
    .fp-skills__inner { padding-inline: 40px; gap: 40px; }
 
    .fp-skills__groups { gap: 12px; }
    .fp-skills__group { padding: 24px; }
}

@media (max-width: 900px) {
    .fp-skills__inner {
        flex-direction: column;
        padding-inline: 24px;
        gap: 32px;
    }
    .fp-skills__title { width: 100%;}
    .fp-skills__groups { grid-template-columns: 1fr; gap: 8px; width:100%;}
}

@media (max-width: 480px) {
    .fp-skills__inner { padding-inline: 20px; }
    .fp-skills__item { font-size: 16px; }
}
