/* ==========================================================================
   Spis treści (Table of Contents)
   Wgraj do: wp-content/themes/generatepress_child/toc.css
   ========================================================================== */

.cp-toc {
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 4px 28px 20px;
    margin: 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cp-toc-summary {
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #2B2B28;
    padding: 20px 0 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cp-toc-summary::-webkit-details-marker {
    display: none;
}

.cp-toc-summary::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #2B2B28;
    border-bottom: 2px solid #2B2B28;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.5;
}

.cp-toc[open] .cp-toc-summary::after {
    transform: rotate(-135deg);
}

.cp-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cp-toc-item {
    margin: 0;
    border-bottom: 1px solid #ececec;
}

.cp-toc-item:last-child {
    border-bottom: none;
}

.cp-toc-item a {
    display: block;
    padding: 13px 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #1E5B41;
    text-decoration: none;
    line-height: 1.4;
}

.cp-toc-item a:hover {
    color: #A32D2D;
    text-decoration: underline;
}

/* H3 jako wcięte podpunkty pod H2 */
.cp-toc-level-3 {
    padding-left: 18px;
}

.cp-toc-level-3 a {
    font-size: 14px;
    color: #4F7A63;
}

.cp-toc-level-3 a:hover {
    color: #A32D2D;
}

.cp-toc-level-3 a::before {
    content: "— ";
    color: #c9c4b4;
}

@media (max-width: 600px) {
    .cp-toc {
        max-width: 100%;
        padding: 4px 20px 16px;
        border-radius: 10px;
    }
    .cp-toc-item a {
        font-size: 14px;
    }
}
