/* pt.css — komponenty polandti.me (okruszki, chipsy, bloki, tabele)
   Motyw dzień/noc: bez sztywnych kolorów tła/tekstu — currentColor, inherit,
   rgba(127,127,127,…) i akcent #45b748. */

/* ---------- okruszki ---------- */

.pt-crumbs {
    /* .section__body bywa flex-kontenerem — okruszki zawsze osobnym, pełnym wierszem */
    width: 100%;
    flex: 0 0 100%;
    font-size: 13px;
    opacity: .75;
    margin: 0 0 18px;
    text-align: left;
}
.pt-crumbs a {
    color: #45b748;
    text-decoration: none;
}
.pt-crumbs a:hover {
    text-decoration: underline;
}
.pt-crumbs__sep {
    margin: 0 6px;
    opacity: .6;
}
.pt-crumbs__current {
    opacity: .9;
}

/* ---------- chipsy (pigułki linków) ---------- */

.pt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.pt-chips + .pt-chips {
    margin-top: 14px;
}
a.pt-chip {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(127, 127, 127, .35);
    background: rgba(127, 127, 127, .07);
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: normal;
    text-align: center;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
a.pt-chip:hover {
    border-color: #45b748;
    color: #45b748;
    text-decoration: none;
}
a.pt-chip--accent {
    background: #45b748;
    border-color: transparent;
    color: #fff;
}
a.pt-chip--accent:hover {
    background: #3d9e41;
    border-color: transparent;
    color: #fff;
}

/* ---------- blok z tytułem ---------- */

.pt-block {
    width: 100%;
    flex: 0 0 100%;
    margin: 0 0 32px;
}
.pt-block:last-child {
    margin-bottom: 0;
}
.pt-block__title,
h2.pt-block__title,
h3.pt-block__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: none;
    letter-spacing: normal;
    text-align: center;
    margin: 0 0 16px;
    padding: 0;
}

/* ---------- tabela ---------- */

table.pt-table {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-collapse: collapse;
    background: transparent;
}
.pt-table th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .6;
    text-align: left;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    width: auto;
    height: auto;
}
.pt-table td,
.pt-table tbody tr td {
    padding: 10px 14px !important;
    border: 0 !important;
    border-top: 1px solid rgba(127, 127, 127, .18) !important;
    border-radius: 0 !important;
    background: transparent !important;
    width: auto;
    height: auto;
    text-align: left;
}
.pt-table tbody tr,
.pt-table tbody tr:nth-child(odd),
.pt-table tbody tr:nth-child(2n) {
    background: transparent !important;
    border: 0 !important;
}
.pt-table__num {
    text-align: right !important;
    white-space: nowrap;
}

/* ---------- łamanie kolumn (section__col ma column-count: 2) ---------- */

.pt-break-avoid,
.pt-block,
table.pt-table {
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

/* ---------- drobiazgi układu (przeniesione z inline <style>) ---------- */

.section__col_half + .section__col:not(.section__col_half) {
    margin-top: 20px;
}
