/* ===========================================================
   Policies page — collapsible accordion (native <details>)
   Reuses .tp-hero / .tp-breadcrumb from toddler.css.
   =========================================================== */

.pol-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 24px 90px;
}

.pol-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.pol-intro span {
    color: #30A7DF;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.pol-intro h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #101828;
    margin-top: 10px;
}

.pol-intro p {
    color: #4A5565;
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
}

/* Toolbar */
.pol-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto 14px;
}

.pol-toolbar button {
    background: none;
    border: none;
    color: #30A7DF;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.pol-toolbar button:hover {
    text-decoration: underline;
}

/* Accordion item */
.pol-item {
    border: 1px solid #e4edf3;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(14, 68, 89, 0.05);
    overflow: hidden;
}

.pol-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0E4459;
    transition: background 0.15s;
}

.pol-item summary:hover {
    background: #f4f8fb;
}

.pol-item summary::-webkit-details-marker {
    display: none;
}

.pol-num {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #85C555;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.pol-chevron {
    margin-left: auto;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #30A7DF;
    border-bottom: 2px solid #30A7DF;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.pol-item[open] .pol-chevron {
    transform: rotate(-135deg);
}

.pol-item[open] summary {
    border-bottom: 1px solid #eef0f3;
}

.pol-body {
    padding: 18px 26px 26px;
    color: #4A5565;
    font-size: 15.5px;
    line-height: 26px;
}

.pol-body h4 {
    font-family: 'Fira Sans', sans-serif;
    color: #0E4459;
    font-size: 16px;
    margin: 18px 0 6px;
}

.pol-body h4:first-child {
    margin-top: 0;
}

.pol-body p {
    margin: 0 0 12px;
}

.pol-body ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.pol-body li {
    margin-bottom: 6px;
}

.pol-body a {
    color: #30A7DF;
    word-break: break-word;
}

.pol-body ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

/* Embedded video answers (FAQs) */
.pol-video {
    position: relative;
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(14, 68, 89, 0.16);
    margin-top: 4px;
}

.pol-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pol-readmore {
    display: inline-block;
    margin-top: 4px;
    color: #30A7DF;
    font-weight: 600;
    text-decoration: none;
}

.pol-readmore:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .pol-wrap {
        padding: 56px 18px 70px;
    }

    .pol-intro h2 {
        font-size: 27px;
    }

    .pol-item summary {
        font-size: 16px;
        padding: 16px 18px;
        gap: 12px;
    }

    .pol-body {
        padding: 16px 18px 22px;
    }
}
