.skills-section {
    padding-top: 74px;
}

.skills-section .section-heading {
    margin-bottom: 56px;
}

.skills-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 18px;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 30px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    text-align: center;
}

.skill-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.skill-item span {
    width: 34px;
    height: 34px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-family: "Jura", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.skill-item small {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: #89BCD9;
}

/* ── Skills Note (Blob) ───────────────────────── */
.skills-note {
    position: relative;
    width: 370px;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    text-align: center;
}

.skills-note-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition:
        opacity 1.6s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.6s cubic-bezier(0.19, 1, 0.22, 1),
        filter 1.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.skills-note-default-shape {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
}

.skills-note-hover-shape {
    opacity: 0;
    z-index: 2;
    transform: scale(0.985);
    filter: saturate(0.96) brightness(0.985);
}

.skills-note:hover .skills-note-default-shape {
    opacity: 0;
    transform: scale(1.015);
    filter: saturate(0.97) brightness(1.01);
}

.skills-note:hover .skills-note-hover-shape {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
}

.skills-note-content {
    position: relative;
    z-index: 1;
    width: 78%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.skills-note-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.skills-note-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.skills-note-tech small {
    font-size: 10px;
    line-height: 1.2;
    color: #ffffff;
}

.skills-note h3 {
    font-family: "Jura", sans-serif;
    color: var(--text-main);
    font-size: 15px;
    margin-bottom: 0;
}

.skills-note p {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: var(--text-soft);
}
