/* Public earnings calendar page — site chrome (shared classes, INV-259).
   CSS variables (--bg-tertiary, --accent, --border-color, …) come from common.css. */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px; /* top clears the fixed site header */
}

.hero-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, #16213e 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 14px;
}
.hero-subtitle {
    color: var(--text-secondary, #a1a1aa);
    font-size: 17px;
    max-width: 640px;
    margin: 0;
}

.cta-section {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-pink, #ec4899) 100%);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
}
.cta-section h2 { font-size: 26px; font-weight: 700; margin: 0 0 10px; color: #fff; }
.cta-section p { color: rgba(255,255,255,0.9); margin: 0 0 22px; font-size: 16px; }
.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--accent);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}
.cta-button:hover { transform: translateY(-2px); }

.site-footer {
    text-align: center;
    padding: 40px 24px;
    color: var(--text-muted, #8a8aa0);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

@media (max-width: 640px) {
    .main-content { padding: 96px 16px 40px; }
    .hero-section { padding: 28px 20px; }
    .hero-content h1 { font-size: 27px; }
    .cta-section { padding: 32px 20px; }
}
