/* cta banner */
.pp-article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    width: 100%;
    padding: 1.1rem 1.25rem;
    margin: 2rem 0;
    background: #fdfdfd;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    box-sizing: border-box;
}

.pp-article-cta__text {
    flex: 1 1 auto;
    min-width: 0;
    color: #111;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing:-0.1;
}

.pp-article-cta__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.1rem;
    background: #e93b00;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 10px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pp-article-cta__button:hover,
.pp-article-cta__button:focus {
    background: #cf3400;
    color: #fff;
    text-decoration: none;
}

.pp-article-cta__button:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .pp-article-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-article-cta__button {
        width: 100%;
    }
}
/* /cta banner */

.blog-article {
    max-width: 780px;
    margin: 3.5em auto 0 auto;
    padding: 0 16px;
    line-height: 1.75;
    font-size: 1.0625rem;
}

.blog-article h1 {
    line-height: 1.15;
    margin: 0.5em 0 16px;
    font-size: 3em;
}

.blog-article h2 {
    margin: 40px 0 12px;
    line-height: 1.25;
}

.blog-article h3 {
    margin: 28px 0 10px;
    line-height: 1.25;
}

.blog-article p,
.blog-article ul,
.blog-article ol {
    margin: 0 0 16px;
}

.blog-article ul,
.blog-article ol {
    padding-left: 1.25em;
}

.blog-article img {
    max-width: 100%;
    height: auto;
    display: block;
}

.blog-figure {
    margin: 20px 0;
}

.blog-figure--placeholder .blog-figure__placeholder {
    border: 1px dashed currentColor;
    opacity: 0.7;
    padding: 16px;
    border-radius: 8px;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.blog-table tbody tr:nth-child(even) { 
    background-color: rgba(0,0,0,0.07)
}

.blog-table th,
.blog-table td {
    text-align: left;
    vertical-align: top;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.blog-table thead th {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
}

.blog-note {
    font-size: 0.95em;
    opacity: 0.9;
}

.blog-cta {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
}
.table-wrap{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}
.table-wrap table{
    width:100%;
    min-width:700px;
    border-collapse:collapse;
}
.table-wrap th,
.table-wrap td{
    vertical-align:top;
    white-space:normal;
    word-break:break-word;
}
p a { 
    color: var(--accent);
}
#faq {
    width: 100vw;
    margin-left: calc(50% - 51vw);
    margin-right: calc(50% - 51vw);
}
@media (max-width: 720px){
    .table-wrap table{ min-width: 600px; }
}