html, body {
    margin: 0;
    padding: 0;
}

body.ssh-frontend {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.ssh-frontend .ssh-page {
    flex: 1 0 auto;
}

body.ssh-frontend .ssh-public-footer {
    margin-top: auto;
}

body.ssh-frontend * {
    box-sizing: border-box;
}

body.ssh-frontend .site,
body.ssh-frontend .site-content,
body.ssh-frontend .ast-container,
body.ssh-frontend .entry-content,
body.ssh-frontend .post-content,
body.ssh-frontend article {
    margin: 0;
    padding: 0;
    max-width: none;
}

body.ssh-frontend .entry-content > .ssh-page {
    margin: 0;
}
body .ssh-page {
    color: #1f2d5a;
}

.ssh-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.ssh-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.ssh-btn-primary {
    background: #4c72d9;
    color: #fff;
}

.ssh-card {
    background: #fff;
    border: 1px solid #e8ebf3;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(31, 45, 90, 0.06);
}

.ssh-card-grid,
.ssh-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ssh-center {
    text-align: center;
    margin-top: 32px;
}

.ssh-public-header,
.ssh-public-footer {
    padding: 20px 0;
    background: #fff;
}

.ssh-public-header {
    border-bottom: 1px solid #e8ebf3;
}

.ssh-public-footer {
    border-top: 1px solid #e8ebf3;
    margin-top: 0;
}

.ssh-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ssh-logo a,
.ssh-nav a {
    text-decoration: none;
    color: #1f2d5a;
}

.ssh-nav {
    display: flex;
    gap: 24px;
}