/* Shared SEO/GEO content pages ============================================ */
.seo-page .main .tldr-block {
    margin: 20px 10% 30px;
    padding: 18px 22px;
    border: 1px solid #eadfce;
    border-left: 4px solid #ac262d;
    border-radius: 0 8px 8px 0;
    background: #fffaf0;
    box-shadow: 0 4px 12px rgba(122, 77, 28, 0.07);
}

.seo-page .main .tldr-block h2::before {
    content: "";
}

.seo-page .seo-content {
    margin: 40px 10%;
    color: #333;
    line-height: 1.85;
}

.seo-page .seo-content h2 {
    margin: 44px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #9a5b22;
    color: #7a3f13;
    font-size: 30px;
}

.seo-page .seo-content h3 {
    margin: 26px 0 12px;
    color: #3f5534;
    font-size: 22px;
}

.seo-page .seo-content h4 {
    margin: 0 0 8px;
    color: #7a3f13;
    font-size: 18px;
}

.seo-page .seo-content p {
    margin-bottom: 16px;
    color: #3f3f3f;
    font-size: 17px;
    line-height: 1.85;
}

.seo-page .seo-content ul {
    margin: 0 0 22px 24px;
}

.seo-page .seo-content li {
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    line-height: 1.75;
    list-style: disc;
}

.seo-page .seo-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.seo-page .seo-card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-page .seo-card {
    padding: 16px;
    border: 1px solid #eadfce;
    border-radius: 8px;
    background: #fffaf1;
}

.seo-page .seo-card p {
    margin: 0;
    color: #554c42;
    font-size: 15px;
    line-height: 1.75;
}

.seo-page .seo-figure {
    margin: 26px 0 34px;
    border: 1px solid #eadfce;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.seo-page .seo-figure-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 34px;
}

.seo-page .seo-figure-grid .seo-figure {
    margin: 0;
}

.seo-page .seo-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.seo-page .seo-figure figcaption {
    padding: 12px 15px;
    color: #665b4d;
    font-size: 14px;
    line-height: 1.7;
    background: #fffaf1;
}

.seo-page .seo-table {
    width: 100%;
    margin: 22px 0 30px;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.seo-page .seo-table th {
    padding: 14px;
    background: #7a3f13;
    color: #fff;
    text-align: left;
    font-size: 15px;
}

.seo-page .seo-table td {
    padding: 13px;
    border-bottom: 1px solid #f0e6d8;
    color: #4c4437;
    font-size: 15px;
    vertical-align: top;
}

.seo-page .seo-table tr:last-child td {
    border-bottom: none;
}

.seo-page .seo-faq,
.seo-page .seo-cta {
    margin: 36px 0;
    padding: 22px;
    border: 1px solid #eadfce;
    border-radius: 8px;
    background: #fffcf6;
}

.seo-page .seo-faq-item {
    margin-bottom: 16px;
}

.seo-page .seo-faq-item:last-child {
    margin-bottom: 0;
}

.seo-page .seo-faq-item p {
    margin: 0;
    color: #554c42;
    font-size: 15px;
}

.seo-page .seo-link-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.seo-page .seo-link-pills a {
    display: inline-block;
    padding: 7px 13px;
    border: 1px solid #d6b48e;
    border-radius: 999px;
    background: #fff;
    color: #7a3f13;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
}

.seo-page .seo-link-pills a:hover {
    border-color: #ac262d;
    background: #ac262d;
    color: #fff;
}

@media (max-width: 1000px) {
    .seo-page .main > h1 {
        display: block;
        height: auto;
        min-height: 0;
        margin: 24px 15px 18px;
        padding: 0;
        background: none;
        line-height: 1.42;
        overflow: visible;
    }

    .seo-page .main > h1 span {
        display: block;
        height: auto;
        padding: 0;
        background: transparent;
        line-height: 1.42;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .seo-page .main .tldr-block,
    .seo-page .seo-content {
        margin-left: 15px;
        margin-right: 15px;
    }

    .seo-page .main .tldr-block {
        margin-top: 0;
        margin-bottom: 28px;
    }

    .seo-page .seo-content {
        margin-top: 26px;
    }

    .seo-page .seo-content h2 {
        font-size: 24px;
        line-height: 1.35;
    }

    .seo-page .seo-card-grid,
    .seo-page .seo-card-grid-three,
    .seo-page .seo-figure-grid {
        grid-template-columns: 1fr;
    }

    .seo-page .seo-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .seo-page .seo-faq,
    .seo-page .seo-cta {
        padding: 18px 15px;
    }
}
