/* Basic layout */

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
}

/* Header */

.wcclassic-header {
    background: #111827;
    color: #fff;
}

.wcclassic-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcclassic-logo a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.wcclassic-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.wcclassic-nav a:hover {
    text-decoration: underline;
}

/* Main is now full width */

.wcclassic-main {
    width: 100%;
    margin: 0;
    padding: 0 0 3rem;
}

/* Footer */

.wcclassic-footer {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    margin-top: 0;
}

.wcclassic-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    color: #6b7280;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
}

/* Responsive tweaks */

@media (max-width: 768px) {
    .wcclassic-header-inner,
    .wcclassic-footer-inner {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
