/* Shared styling for lightweight, server-rendered public content pages
   (/about, /support). Reuses the same design tokens as storefront/home.css
   (--pub-*) so these pages match the rest of the marketing shell in both
   light and dark themes. */

.static-hero {
    text-align: center;
    padding: 64px 0 24px;
}

.static-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -1px;
    color: var(--pub-text);
}

.static-hero p {
    font-size: 17px;
    color: var(--pub-text2);
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.6;
}

.static-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

.static-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 0 32px;
}

@media (max-width: 860px) {
    .static-card-grid { grid-template-columns: 1fr; }
}

.static-card {
    display: block;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--pub-card-border);
    background: var(--pub-card);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.static-card:hover {
    border-color: var(--pub-blue);
    transform: translateY(-2px);
}

.static-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--pub-text);
    margin: 0 0 8px;
}

.static-card p {
    font-size: 14px;
    color: var(--pub-text2);
    line-height: 1.55;
    margin: 0;
}

.static-card .static-card-arrow {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pub-blue);
}

.static-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 0 8px;
}

.static-link-row a {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid var(--pub-card-border);
    color: var(--pub-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
}

.static-link-row a:hover {
    border-color: var(--pub-blue);
    color: var(--pub-blue);
}

.static-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 0 40px;
}

@media (max-width: 640px) {
    .static-topic-grid { grid-template-columns: 1fr; }
}

.static-topic-card {
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid var(--pub-card-border);
    background: var(--pub-card);
}

.static-topic-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--pub-text);
    margin: 0 0 6px;
}

.static-topic-card p {
    font-size: 13.5px;
    color: var(--pub-text2);
    line-height: 1.55;
    margin: 0;
}

.static-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.static-cta-card {
    flex: 1 1 260px;
    max-width: 340px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--pub-card-border);
    background: var(--pub-card);
    text-align: center;
}

.static-cta-card p {
    font-size: 14px;
    color: var(--pub-text2);
    line-height: 1.55;
    margin: 0 0 16px;
}

.static-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--pub-gradient);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.static-cta-btn:hover {
    opacity: 0.92;
}

.static-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--pub-text);
    margin: 0 0 24px;
}
