/* SEKCJA */
.np-guidelines {
    padding: 120px 0 100px;
    background: url("/assets/images/guidelines-bg.jpg") center / cover no-repeat;
}

/* TYTUŁ */
.np-guidelines-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 1.5px;
    margin-bottom: 80px;
    color: #111;
}

/* KOLUMNY */
.np-guidelines-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 60px;
}

/* PANEL TEKSTOWY */
.np-guidelines-panel {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 50px 50px 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* NAGŁÓWKI */
.np-guidelines-panel h3 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #111;
}

/* BLOK */
.np-block {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.np-block h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #111;
}

.np-block p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #333;
}

/* DROP SVG */
.np-drop-guidelines {
    width: 11px;
    margin-right: 5px;
    margin-top: 0px;
    flex-shrink: 0;
}

/* LISTA KOLORÓW */
.np-color-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 20px;
    margin-top: 10px;
}

.np-color-list div {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* NOTE */
.np-note {
    margin-top: 12px;
    font-size: 13px;
    color: #444;
}

/* KAFELKI CMYK */
.np-cmyk-strip {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.np-cmyk span {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 26px;
    color: #fff;
}

.np-color-list span {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

/* CMYK */
.c {
    background: #00a3e0;
}

.m {
    background: #e4007f;
}

.y {
    background: #ffe600;
    color: #000;
}

.k {
    background: #000;
}

.w {
    background: #fff;
    color: #000 !important;
    border: 1px solid #ccc;
}

/* STOPKA */
.np-guidelines-footer {
    margin-top: 50px;
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #111;
}

.np-guidelines-footer span {
    color: #e4007f;
    font-weight: bold;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1000px) {
    .np-guidelines-columns {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .np-cmyk-strip {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .np-guidelines {
        padding: 80px 0;
    }

    .np-guidelines-panel {
        padding: 30px;
    }

    .np-guidelines-title {
        font-size: 22px;
    }
}