:root {
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #f4f7fb;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-width: 320px;
}

.container {
    width: min(100% - 32px, 760px);
    margin: 0 auto;
    padding: 64px 0;
}

.card {
    background: #ffffff;
    border: 1px solid #e4e9f2;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(27, 45, 78, 0.08);
    padding: 40px;
}

.card--hero {
    border-top: 5px solid #2563eb;
}

.eyebrow {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

h1 {
    margin: 12px 0 10px;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.1;
}

.muted,
.help-text {
    color: #64748b;
    line-height: 1.6;
}

.status {
    align-items: center;
    border-radius: 10px;
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    margin: 22px 0 4px;
    padding: 12px 16px;
}

.status__dot {
    background: currentColor;
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

.status--success {
    background: #ecfdf3;
    color: #15803d;
}

.status--error {
    background: #fff7ed;
    color: #c2410c;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    align-items: center;
    background: #2563eb;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    text-decoration: none;
}

.button:hover {
    background: #1d4ed8;
}

code {
    background: #eef2ff;
    border-radius: 4px;
    color: #4338ca;
    padding: 2px 5px;
}

@media (max-width: 520px) {
    .container {
        padding: 24px 0;
    }

    .card {
        padding: 28px 22px;
    }
}

.public-content {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.content-card {
    overflow: hidden;
}

.content-card img {
    border-radius: 12px;
    display: block;
    max-height: 320px;
    object-fit: cover;
    width: 100%;
}

.content-card h2 {
    color: #0f172a;
    margin: 18px 0 8px;
}

.content-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 680px) {
    .public-content {
        grid-template-columns: 1fr;
    }
}

