/* Policy Page Styles - Copied from Single Blog Page Layout */

.wa-policy-page--container {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: auto;
    max-width: 78rem;
}

.wa-policy-page--header {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 0 2.25rem 0;
}

.wa-policy-header--content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wa-policy--date {
    font-size: 0.875rem;
    font-weight: 500;
    color: #00527c;
}

.wa-policy--title {
    font-size: 3rem;
    line-height: 3.75rem;
    font-weight: 600;
}

.wa-policy--description {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #616161;
    font-weight: 400;
}

.wa-policy-feature--img {
    width: 100%;
    max-height: 32.25rem;
    overflow: clip;
    border-radius: 1rem;
    aspect-ratio: 2.35;
}

.wa-policy-feature--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wa-policy-page--main {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-bottom: 4rem;
}

.wa-policy-page--content {
    flex: 1;
    max-width: 100%;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Content typography - copied from blocks.css patterns */
.wa-policy-page--content p {
    margin-bottom: 1.5rem;
    font-size: inherit;
    line-height: inherit;
}

.wa-policy-page--content h1 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.wa-policy-page--content h2 {
    font-size: 2rem;
    margin: 1.75rem 0 1rem;
    font-weight: 600;
}

.wa-policy-page--content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.wa-policy-page--content h4 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.75rem;
    font-weight: 600;
}

.wa-policy-page--content ul,
.wa-policy-page--content li,
.wa-policy-page--content ol {
    list-style-type: inherit;
}

/* List blocks */
.wa-policy-page--content ul,
.wa-policy-page--content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    font-size: inherit;
    line-height: inherit;
}

/* Unordered lists */
.wa-policy-page--content ul {
    list-style-type: disc;
}

.wa-policy-page--content ul ul {
    list-style-type: circle;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wa-policy-page--content ul ul ul {
    list-style-type: square;
}

/* Ordered lists */
.wa-policy-page--content ol {
    list-style-type: decimal;
}

.wa-policy-page--content ol ol {
    list-style-type: lower-alpha;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wa-policy-page--content ol ol ol {
    list-style-type: lower-roman;
}

/* List items */
.wa-policy-page--content li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.wa-policy-page--content li > ul,
.wa-policy-page--content li > ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Nested list spacing */
.wa-policy-page--content li li {
    margin-bottom: 0.25rem;
}

/* List item content */
.wa-policy-page--content li > p {
    margin-bottom: 0.5rem;
}

.wa-policy-page--content blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #0073aa;
    background-color: #f5f5f5;
    font-style: italic;
}

.wa-policy-page--content a {
    color: #0073aa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wa-policy-page--content a:hover {
    color: #005a87;
}

/* Images */
.wa-policy-page--content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
}

/* Tables */
.wa-policy-page--content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.wa-policy-page--content table th,
.wa-policy-page--content table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.wa-policy-page--content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

/* Code */
.wa-policy-page--content code {
    background-color: #f4f4f4;
    padding: 0.125rem 0.25rem;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
}

.wa-policy-page--content pre {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Strong and emphasis */
.wa-policy-page--content strong {
    font-weight: 600;
}

.wa-policy-page--content em {
    font-style: italic;
}

/* HR separator */
.wa-policy-page--content hr {
    margin: 2rem auto;
    border: none;
    border-top: 1px solid #e0e0e0;
    width: 50%;
}

@media (max-width: 48rem) {
    .wa-policy--title {
        font-size: 2.25rem;
    }

    .wa-policy--description {
        font-size: 1.125rem;
    }

    .wa-policy-feature--img {
        max-height: 15rem;
    }
}