/* Shared styles for Temp Mail static pages */
body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0078ff, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

h2 {
    color: #1e293b;
    margin-top: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

h3 {
    color: #334155;
}

p {
    margin-bottom: 1.2rem;
}

ul,
ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #0078ff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.articles-page {
    font-family: system-ui, sans-serif;
}

.articles-header {
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
}

.article-section {
    margin-bottom: 3rem;
}

.article-columns {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.article-columns section {
    flex: 1 1 300px;
}

.articles-footer {
    border-top: 1px solid #f1f5f9;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .article-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
}