
/*
Theme Name: Silver Foxx
Theme URI: https://silverfoxx.ai/
Author: Shrishain
Description: Custom theme with ACF Flexible Layout
Version: 1.0.0
*/

.static-page {

    padding: 80px 24px;

    background: #fff;

}

.static-page-container {

    max-width: 900px;

    margin: 0 auto;

}

.static-page-header {

    margin-bottom: 48px;

}

.static-page-header h1 {

    font-size: clamp(2rem, 4vw, 3.5rem);

    line-height: 1.1;

    margin: 0 0 12px;

    font-weight: 700;

}

.static-page-header .eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: .08em;

    font-size: .8rem;

    color: #666;

}

.static-page-header .updated {

    color: #777;

    font-size: .95rem;

}

.static-content {

    font-size: 1.05rem;

    line-height: 1.8;

    color: #222;

}

.static-content p {

    margin: 0 0 1.25rem;

}

.static-content h2 {

    font-size: 1.4rem;

    margin: 2.5rem 0 1rem;

    line-height: 1.3;

    font-weight: 700;

}

.static-content h3 {

    font-size: 1.15rem;

    margin: 2rem 0 .75rem;

    font-weight: 600;

}

.static-content strong {

    font-weight: 700;

}

.static-content a {

    color: var(--foxx-core);

    text-decoration: underline;

}

.static-content ul,
.static-content ol {

    margin: 1rem 0 1.5rem;

    padding-left: 1.5rem;

}

.static-content li {

    margin-bottom: .65rem;

}

.static-content blockquote {

    margin: 2rem 0;

    padding: 1rem 1.5rem;

    border-left: 4px solid var(--foxx-core);

    background: #f8f8f8;

}

.static-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 2rem 0;

}

.static-content th,
.static-content td {

    border: 1px solid #ddd;

    padding: 12px;

    text-align: left;

}

.static-content th {

    background: #f7f7f7;

    font-weight: 600;

}

.static-content img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 2rem auto;

    border-radius: 12px;

}

@media (max-width: 768px) {

    .static-page {

        padding: 48px 20px;

    }

    .static-content {

        font-size: 1rem;

    }

}

.static-content ol {
    counter-reset: section;
    list-style: none;
    padding-left: 0;
}

.static-content ol > li {
    counter-increment: section;
    margin-bottom: 2rem;
}

.static-content ol > li > h2::before {
    content: counter(section) ". ";
    font: inherit;
    color: inherit;
}