/*
 * Reserved custom CMS styling area.
 * This file is loaded after style.css to allow page-level overrides.
 */

.page-builder {
    --pb-space: 28px;
    --pb-title: #1f1f1f;
    --pb-text: #444;
    --pb-accent: #c9a14a;
}

.page-block {
    margin-bottom: var(--pb-space);
}

.page-block h1,
.page-block h2,
.page-block h3,
.page-block h4 {
    color: var(--pb-title);
    line-height: 1.3;
    margin-bottom: .7em;
}

.page-block p,
.page-block li {
    color: var(--pb-text);
    line-height: 1.9;
}

.page-block img {
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .09);
}

.page-block blockquote {
    margin: 0;
    padding: 16px 18px;
    border-left: 4px solid var(--pb-accent);
    background: #fff8ea;
    border-radius: 10px;
    color: #6e5422;
}

.page-cols-2,
.page-cols-3 {
    display: grid;
    gap: 20px;
}

.page-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.page-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.page-highlight {
    border: 1px solid #ead8af;
    background: linear-gradient(140deg, #fff, #fff7e8);
    border-radius: 14px;
    padding: 22px;
}

.page-cta {
    padding: 28px;
    border-radius: 16px;
    background: linear-gradient(100deg, #c9a14a, #9f7b2a);
    color: #fff;
    box-shadow: 0 16px 40px rgba(169, 132, 44, .35);
}

.page-cta .btn {
    background: #fff;
    color: #8d6b20;
}

.page-faq-item {
    border: 1px solid #ece6d8;
    border-radius: 12px;
    margin-bottom: 10px;
}

.page-faq-q {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    padding: 14px;
    font-weight: 700;
    cursor: pointer;
}

.page-faq-a {
    padding: 0 14px 14px;
    color: #555;
    display: none;
}

.page-faq-item.open .page-faq-a {
    display: block;
}

@media (max-width: 900px) {
    .page-cols-2,
    .page-cols-3 {
        grid-template-columns: 1fr;
    }
}
