:root {
    --sl-bg: #0a0a0f;
    --sl-bg-elevated: rgba(18, 18, 26, 0.9);
    --sl-bg-card: rgba(22, 22, 31, 0.9);
    --sl-bg-card-hover: rgba(28, 28, 40, 0.92);
    --sl-border: rgba(255, 255, 255, 0.06);
    --sl-border-strong: rgba(255, 255, 255, 0.12);
    --sl-text: #e0e0e8;
    --sl-text-muted: #8888a0;
    --sl-text-dim: #55556a;
    --sl-accent: #00c896;
    --sl-accent-dim: rgba(0, 200, 150, 0.15);
    --sl-loss: #e05555;
    --sl-font-heading: Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --sl-font-body: Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --sl-font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
    --sl-font-mono: Consolas, "Liberation Mono", "Courier New", monospace;
    --sl-max-width: 1200px;
    --sl-header-height: 64px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: var(--sl-bg);
    background-image: url("img/bg-w1536.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--sl-text);
    font-family: var(--sl-font-body);
    font-size: 15px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--sl-border);
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sl-header-inner {
    display: flex;
    height: var(--sl-header-height);
    max-width: var(--sl-max-width);
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 40px;
}

.sl-logo {
    color: #fff;
    font-family: var(--sl-font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.sl-logo a {
    color: #fff;
    transition: color 0.2s ease;
}

.sl-logo span {
    color: var(--sl-accent);
}

.sl-logo a:hover {
    color: yellow;
}

.sl-logo a:hover span {
    color: var(--sl-accent);
}

.sl-nav ul,
.sl-footer-nav ul {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sl-nav li {
    display: flex;
}

.sl-nav .current-menu-item:first-child {
    display: none;
}

.sl-nav a {
    position: relative;
    display: flex;
    min-height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--sl-text-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    transition: color 0.25s;
}

.sl-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sl-accent);
    transition: width 0.3s ease;
}

.sl-nav a:hover,
.sl-nav .current-menu-item > a,
.sl-nav a[aria-current="page"] {
    color: #fff;
}

.sl-nav a:hover::after,
.sl-nav .current-menu-item > a::after,
.sl-nav a[aria-current="page"]::after {
    width: 100%;
}

.sl-nav-main {
    display: block;
    white-space: nowrap;
}

.sl-nav-sub {
    display: block;
    color: rgba(198, 198, 218, 0.5);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.sl-nav a:hover .sl-nav-sub,
.sl-nav .current-menu-item > a .sl-nav-sub {
    color: var(--sl-accent);
}

.sl-admin-link {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sl-border-strong);
    border-radius: 2px;
    padding: 0 14px;
    color: var(--sl-text-muted);
    font-size: 12px;
    font-weight: 600;
}

.sl-nav-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--sl-border-strong);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.sl-nav-toggle:hover {
    border-color: var(--sl-accent);
}

.sl-nav-toggle-bar {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.sl-nav-toggle-bar:nth-child(1) {
    top: 14px;
}

.sl-nav-toggle-bar:nth-child(2) {
    top: 21px;
}

.sl-nav-toggle-bar:nth-child(3) {
    top: 28px;
}

.sl-nav-toggle.is-open .sl-nav-toggle-bar:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.sl-nav-toggle.is-open .sl-nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.sl-nav-toggle.is-open .sl-nav-toggle-bar:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.sl-no-scroll {
    overflow: hidden;
}

.sl-admin-link:hover {
    border-color: var(--sl-accent);
    color: #fff;
}

.sl-hero {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 360px;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sl-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.sl-hero-bg.no-image {
    background: linear-gradient(135deg, rgba(0, 40, 30, 0.7) 0%, rgba(0, 10, 30, 0.8) 50%, rgba(20, 0, 40, 0.7) 100%);
}

.sl-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 150, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 150, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: sl-gridShift 20s linear infinite;
}

.sl-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 200, 150, 0.12) 0%, transparent 60%);
}

.sl-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 255, 255, 0.05);
}

.sl-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 85%;
    padding: 0 30px;
    text-align: center;
}

.sl-hero-content h1 {
    margin: 0 0 14px;
    color: #fff;
    font-family: var(--sl-font-heading);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.sl-hero-content h1 em {
    color: var(--sl-accent);
    font-style: normal;
}

.sl-hero-sub {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.sl-hero-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    justify-content: center;
    gap: 20px;
    margin: 0 auto 12px;
}

.sl-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(10, 10, 18, 0.55);
    color: #fff;
    text-align: center;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

a.sl-hero-card:hover {
    border-color: var(--sl-accent);
    background: rgba(0, 200, 150, 0.08);
    transform: translateY(-2px);
}

.sl-hero-card-label {
    color: var(--sl-accent);
    font-family: var(--sl-font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.sl-hero-card-value {
    color: yellow;
    font-family: var(--sl-font-heading);
    font-size: 26px;
    font-weight: 100;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.sl-hero-card-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    letter-spacing: 0.04em;
}

.sl-hero-asof {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.sl-content-wrapper {
    display: grid;
    max-width: var(--sl-max-width);
    grid-template-columns: 260px 1fr 260px;
    gap: 32px;
    margin: 0 auto;
    padding: 25px 0px 30px;
}

.sl-col-left,
.sl-col-center,
.sl-col-right {
    min-width: 0;
}

.sl-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 3px;
    color: #aaa;
    font-family: var(--sl-font-heading);
    font-size: 16px;
    font-weight: 600;
}

.sl-section-plate {
    margin-bottom: 12px;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    padding: 16px;
}

.sl-side-card {
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    transition: border-color 0.3s, transform 0.3s;
}

.sl-section-plate .sl-side-card {
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid var(--sl-border);
    border-radius: 0;
    background: transparent;
}

.sl-section-plate .sl-side-card:last-of-type {
    border-bottom: none;
}

.sl-side-card:hover {
    border-color: var(--sl-border-strong);
    transform: translateY(-2px);
}

.sl-side-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--sl-bg-elevated);
}

.sl-side-card-body {
    padding: 10px 0 0;
}

.sl-side-card-category {
    margin-bottom: 6px;
    color: var(--sl-accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.sl-side-card-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--sl-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sl-side-card-annual .sl-side-card-title {
    color: var(--sl-accent);
    font-size: 16px;
}

.sl-side-card-swing .sl-side-card-title {
    font-weight: 400;
}

.sl-side-card-sub {
    margin: 4px 0 0;
    color: var(--sl-text-muted);
    font-size: 12px;
    line-height: 1.65;
}

.sl-card-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.sl-card-metrics span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 200, 150, 0.32);
    border-radius: 3px;
    background: rgba(0, 200, 150, 0.08);
    color: var(--sl-accent);
    font-family: var(--sl-font-heading);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    padding: 4px 7px;
}

.sl-side-card-date,
.sl-list-date,
.sl-featured-date {
    margin: 8px 0 0;
    color: yellow;
    font-size: 14px;
    text-align: right;
}

.sl-content-wrapper .sl-side-card-date,
.sl-content-wrapper .sl-list-date,
.sl-content-wrapper .sl-featured-date {
    color: rgba(226, 206, 82, 0.82);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.sl-ad-slot {
    display: none;
}

.sl-list-item {
    border-bottom: 1px solid var(--sl-border);
    padding: 16px 0;
    transition: background 0.2s;
}

.sl-list-month-heading {
    margin: 0;
    padding: 16px 0 30px;
    border-bottom: 1px solid var(--sl-border);
    color: #ddd;
    font-family: var(--sl-font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.sl-list-month-heading:not(:first-child) {
    padding-top: 30px;
}

.sl-list-item:first-child {
    padding-top: 0;
}

.sl-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sl-list-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sl-list-item a {
    display: block;
    width: 100%;
}

.sl-list-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--sl-accent);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sl-list-media {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 8px;
}

.sl-list-thumb {
    width: 160px;
    flex-shrink: 0;
    aspect-ratio: 160 / 106;
    border-radius: 4px;
    object-fit: cover;
}

.sl-list-text {
    min-width: 0;
    flex: 1;
}

.sl-list-excerpt {
    margin: 4px 0 0;
    color: var(--sl-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.sl-featured {
    margin-top: 35px;
    padding-top: 0px;
}

.sl-featured a {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
}

.sl-featured-thumb {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: transform 0.6s ease;
}

.sl-featured a:hover .sl-featured-thumb {
    transform: scale(1.04);
}

.sl-featured-overlay {
    position: static;
    padding: 16px;
    background: transparent;
    color: var(--sl-text);
}

.sl-featured-title {
    margin: 0;
    color: var(--sl-accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.sl-featured-meta {
    margin: 8px 0 0;
    color: var(--sl-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.sl-ranking-item {
    border-bottom: 1px solid var(--sl-border);
    padding: 12px 0;
}

.sl-ranking-item:first-child {
    padding-top: 0;
}

.sl-ranking-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sl-ranking-item a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sl-ranking-num {
    width: 28px;
    flex-shrink: 0;
    color: var(--sl-text-dim);
    font-family: var(--sl-font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.sl-ranking-item:nth-child(1) .sl-ranking-num {
    color: #c090ff;
}

.sl-ranking-item:nth-child(2) .sl-ranking-num {
    color: #00c896;
}

.sl-ranking-item:nth-child(3) .sl-ranking-num {
    color: #60a0ff;
}

.sl-ranking-title {
    margin: 0;
    color: var(--sl-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.sl-side-rule {
    display: block;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s ease;
}

.sl-side-rule:hover {
    border-color: var(--sl-border-strong);
}

.sl-side-rule-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sl-side-rule-body {
    padding: 14px 16px 16px;
}

.sl-side-rule-desc {
    margin: 0 0 10px;
    color: var(--sl-text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.sl-card-metrics-rule {
    margin-bottom: 12px;
}

.sl-side-rule-link {
    display: inline-flex;
    margin-top: 4px;
    color: var(--sl-accent);
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sl-profile {
    margin-top: 24px;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    padding: 24px;
    text-align: center;
}

.sl-profile-avatar {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sl-accent), #0066cc);
}

.sl-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-profile-name {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.sl-profile-desc {
    margin: 0;
    color: var(--sl-text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.sl-profile-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--sl-accent);
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sl-footer {
    border-top: 1px solid var(--sl-border);
    background: rgba(10, 10, 15, 0.92);
    padding: 32px 20px;
    color: var(--sl-text-muted);
    text-align: center;
}

.sl-footer-nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sl-footer-nav a {
    color: var(--sl-text-muted);
    font-size: 12px;
}

.sl-footer-copy {
    margin: 12px 0 0;
    color: var(--sl-text-dim);
    font-size: 12px;
}

.sl-single-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    align-items: start;
}

.sl-main-col {
    min-width: 0;
}

.sl-single {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    padding: 32px;
}

.sl-single-thumb {
    width: 100%;
    max-height: 520px;
    margin-bottom: 22px;
    object-fit: cover;
}

.sl-single-date {
    margin: 0 0 8px;
    color: yellow;
    font-size: 14px;
    text-align: right;
}

.sl-single h1 {
    margin: 0;
    color: #fff;
    font-family: var(--sl-font-serif);
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.45;
}

.sl-single-lead {
    margin: 16px 0 0;
    color: var(--sl-text-muted);
}

.sl-single-body {
    margin-top: 28px;
    color: var(--sl-text);
    font-size: 16px;
    line-height: 2;
}

.sl-article-body {
    font-family: Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.sl-single-body p {
    margin: 0 0 1.4em;
}

.sl-single-body h2,
.sl-single-body h3,
.sl-single-body h4 {
    color: #fff;
    font-family: var(--sl-font-heading);
    line-height: 1.4;
    margin: 1.8em 0 0.6em;
}

.sl-article-body h2,
.sl-article-body h3,
.sl-article-body h4 {
    font-family: var(--sl-font-serif);
}

.sl-single-body h2 {
    font-size: 26px;
    border-left: 4px solid var(--sl-accent);
    padding-left: 12px;
}

.sl-single-body h3 {
    font-size: 21px;
}

.sl-single-body h4 {
    font-size: 18px;
}

.sl-single-body hr {
    border: 0;
    border-top: 1px solid var(--sl-border-strong);
    margin: 2.2em 0;
}

.sl-single-body figure {
    margin: 1.6em 0;
    text-align: center;
}

.sl-single-body figure img,
.sl-single-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

.sl-single-body figcaption {
    margin-top: 8px;
    color: var(--sl-text-muted);
    font-size: 13px;
}

.sl-single-body ul,
.sl-single-body ol {
    margin: 0 0 1.4em;
    padding-left: 1.6em;
}

.sl-single-body blockquote {
    margin: 1.4em 0;
    padding: 12px 18px;
    border-left: 3px solid var(--sl-accent);
    background: rgba(0, 200, 150, 0.06);
    color: var(--sl-text);
}

.sl-single-body a {
    color: var(--sl-accent);
    text-decoration: underline;
}

.sl-single-body code {
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--sl-font-mono);
    font-size: 0.92em;
}

.sl-article-disclaimer {
    margin: 20px 0 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--sl-text-muted);
    font-size: 10px;
    line-height: 1.7;
}

.sl-text-link {
    color: var(--sl-accent);
    font-weight: 600;
}

@keyframes sl-gridShift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

@media (max-width: 1024px) {
    .sl-header-inner {
        min-height: var(--sl-header-height);
        padding: 0 24px;
    }

    .sl-content-wrapper {
        grid-template-columns: 1fr 280px;
        gap: 24px;
        padding: 36px 24px 80px;
    }

    .sl-col-left {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sl-header-inner {
        padding: 0 18px;
    }

    .sl-nav-toggle {
        display: block;
    }

    .sl-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--sl-accent);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        transition: max-height 0.3s ease;
    }

    .sl-nav.is-open {
        max-height: calc(100vh - var(--sl-header-height));
        overflow-y: auto;
    }

    .sl-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .sl-nav li {
        display: block;
        border-top: 1px solid var(--sl-border);
    }

    .sl-nav li:first-child {
        border-top: none;
    }

    .sl-nav a {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 60px;
        padding: 14px 24px;
        text-align: left;
    }

    .sl-nav a::after {
        display: none;
    }

    .sl-nav-main {
        font-size: 15px;
    }

    .sl-nav-sub {
        margin-left: auto;
        text-align: right;
        font-size: 11px;
    }
}

@media (max-width: 760px) {
    body {
        background-image: url("img/bg-w640.webp");
        background-attachment: scroll;
        overflow-x: hidden;
    }

    .sl-hero {
        min-height: 0;
        padding: 15px 0 20px;
    }

    .sl-hero-content {
        max-width: 100%;
        padding: 0 18px;
    }

    .sl-hero-content h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .sl-hero-content h1 em {
        display: block;
    }

    .sl-hero-sub {
        margin-bottom: 22px;
        font-size: 13.5px;
    }

    .sl-hero-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sl-hero-card {
        padding: 18px 16px;
    }

    .sl-hero-card-value {
        font-size: 22px;
    }

    .sl-featured {
        padding-bottom: 15px;
    }

    .sl-content-wrapper {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        box-sizing: border-box;
        gap: 0;
        padding-top: 0;
        padding-right: 25px;
        padding-bottom: 35px;
        padding-left: 25px;
    }

    .sl-col-center {
        order: 1;
    }

    .sl-col-left {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0px;
        padding-right: 0;
        padding-left: 0;
        order: 2;
    }

    .sl-section-heading {
        margin-top: 15px;
    }

    .sl-col-right {
        order: 3;
    }

    .sl-list-media {
        gap: 12px;
    }

    .sl-list-thumb {
        width: 112px;
    }

    .sl-list-title {
        font-size: 15px;
    }

    .sl-section-plate,
    .sl-side-card,
    .sl-side-card a,
    .sl-side-card-thumb {
        max-width: 100%;
    }

    .sl-section-plate {
        overflow: hidden;
    }

    .sl-side-card-date {
        text-align: left;
    }

    .sl-single-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 18px 64px;
    }

    .sl-main-col {
        min-width: 0;
    }

    .sl-single {
        padding: 20px 16px;
    }

    .sl-single h1 {
        font-size: 22px;
        line-height: 1.45;
    }

    .sl-single-contact h1 {
        width: 100%;
    }

    .sl-single-body {
        font-size: 14.5px;
    }

    .sl-contact {
        padding: 0;
    }

    .sl-contact-form {
        gap: 14px;
    }

    .sl-field input,
    .sl-field textarea {
        font-size: 16px;
    }

    .sl-side-rail {
        gap: 20px;
    }

    .sl-footer-inner {
        padding: 28px 18px;
    }

    .sl-footer {
        padding: 0 0 30px 0;
    }
}

@media (min-width: 1800px) {
    body {
        background-image: url("img/bg.webp");
    }
}

body > .sl-content-wrapper,
body > main {
    flex: 1 0 auto;
}

.sl-footer {
    flex-shrink: 0;
}

.sl-next {
    margin: 24px 0 0;
    padding: 24px;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-elevated);
}

.sl-next-kicker {
    margin: 0 0 16px;
    color: var(--sl-accent);
    font-family: var(--sl-font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.sl-next-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sl-next-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 36px 16px 16px;
    border: 1px solid var(--sl-border);
    border-radius: 4px;
    background: var(--sl-bg-card);
    color: var(--sl-text);
    transition: border-color 0.2s, background 0.2s;
}

.sl-next-card:hover {
    border-color: var(--sl-accent);
    background: var(--sl-bg-card-hover);
}

.sl-next-card-kicker {
    color: var(--sl-accent);
    font-family: var(--sl-font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.sl-next-card-title {
    color: #fff;
    font-family: var(--sl-font-heading);
    font-size: 22px;
    font-weight: 700;
}

.sl-next-card-desc {
    color: var(--sl-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.sl-next-card-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: var(--sl-accent);
    font-family: var(--sl-font-heading);
    font-size: 14px;
}

@media (max-width: 760px) {
    .sl-next-grid {
        grid-template-columns: 1fr;
    }
}

.sl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--sl-header-height) + 16px);
}

.sl-widget {
    padding: 0;
    border: none;
    background: transparent;
}

.sl-widget-title {
    margin: 0 0 14px;
    color: #aaa;
    font-family: var(--sl-font-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.sl-widget-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sl-widget-list li {
    position: relative;
    border: 1px solid var(--sl-border);
    background: rgba(22, 22, 31, 0.70);
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.55;
    transition: background 0.15s, border-color 0.15s;
}

.sl-widget-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--sl-accent);
}

.sl-widget-list li + li {
    border-top: none;
}

.sl-widget-list li:hover {
    background: rgba(28, 28, 40, 0.55);
}

.sl-widget-list a {
    display: block;
    color: var(--sl-text);
    transition: color 0.2s;
}

.sl-widget-list a:hover {
    color: var(--sl-accent);
}

.sl-widget-count {
    color: var(--sl-text-muted);
    font-size: 12px;
}

.sl-widget-empty {
    color: var(--sl-text-muted);
    font-size: 12px;
}

.sl-search {
    display: flex;
    gap: 6px;
}

.sl-search input[type="search"] {
    flex: 1;
    min-width: 0;
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 2px;
    color: var(--sl-text);
    padding: 6px 10px;
    font-size: 13px;
}

.sl-search input[type="search"]:focus {
    outline: none;
    border-color: var(--sl-accent);
}

.sl-search button {
    background: var(--sl-accent-dim);
    border: 1px solid var(--sl-accent);
    border-radius: 2px;
    color: var(--sl-accent);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--sl-font-heading);
}

.sl-search button:hover {
    background: var(--sl-accent);
    color: var(--sl-bg);
}

@media (max-width: 1024px) {
    .sl-single-wrap {
        grid-template-columns: 1fr;
        padding: 36px 24px 80px;
    }

    .sl-sidebar {
        position: static;
    }
}

.sl-contact {
    width: 100%;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--sl-border);
}

.sl-contact h2 {
    margin: 0 0 18px;
    color: var(--sl-text);
    font-size: 22px;
}

.sl-contact-success {
    margin: 0 0 20px;
    padding: 12px 14px;
    border-left: 2px solid var(--sl-accent);
    background: var(--sl-accent-dim);
    color: var(--sl-text);
    font-size: 14px;
}

.sl-contact-errors {
    margin: 0 0 20px;
    padding: 12px 14px;
    border-left: 2px solid #d04848;
    background: rgba(208, 72, 72, 0.10);
    color: #ffb3b3;
    font-size: 14px;
}

.sl-contact-errors div + div {
    margin-top: 4px;
}

.sl-contact-form {
    width: 100%;
    display: grid;
    gap: 16px;
}

.sl-field {
    display: grid;
    gap: 6px;
    width: 100%;
}

.sl-field > span {
    color: var(--sl-text-muted);
    font-size: 13px;
    font-weight: 500;
}

.sl-field input,
.sl-field textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 10px 12px;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border-strong);
    border-radius: 6px;
    color: var(--sl-text);
    font: inherit;
    line-height: 1.6;
}

.sl-field textarea {
    resize: vertical;
    min-height: 160px;
}

.sl-field input:focus,
.sl-field textarea:focus {
    outline: none;
    border-color: var(--sl-accent);
    box-shadow: 0 0 0 2px var(--sl-accent-dim);
}

.sl-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.sl-contact-submit {
    margin-top: 6px;
}

.sl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: var(--sl-accent);
    border: 1px solid var(--sl-accent);
    border-radius: 6px;
    color: #0b1015;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.sl-button:hover {
    opacity: 0.85;
    text-decoration: none;
}

.sl-contact-lead {
    margin: 0 0 24px;
    color: var(--sl-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.sl-contact.sl-contact-standalone {
    margin-top: 8px;
    padding-top: 0;
    border-top: 0;
}

.sl-single-contact h1 {
    width: 742px;
    max-width: 100%;
}

.sl-contact-summary {
    width: 742px;
    max-width: 100%;
    margin: 24px 0 28px;
    padding: 20px 24px;
    background: var(--sl-card-bg, #1a1f2b);
    border: 1px solid var(--sl-border, #2b3140);
    border-radius: 8px;
}

.sl-contact-summary dt {
    margin: 0 0 4px;
    color: var(--sl-text-muted, #aab2c4);
    font-size: 13px;
    font-weight: 600;
}

.sl-contact-summary dd {
    margin: 0 0 16px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--sl-border, #2b3140);
    color: var(--sl-text, #e6eaf2);
    font-size: 15px;
    line-height: 1.7;
    word-break: break-word;
}

.sl-contact-summary dd:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.sl-captcha-field {
    width: 742px;
    max-width: 100%;
}

.sl-captcha-field span strong {
    margin-left: 8px;
    padding: 2px 10px;
    background: rgba(255, 255, 0, 0.08);
    border-radius: 4px;
    color: yellow;
    font-family: var(--sl-font-mono);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sl-captcha-field input {
    width: 160px;
    text-align: center;
    font-family: var(--sl-font-mono);
    font-size: 18px;
}

.sl-contact-confirm-form {
    margin-bottom: 16px;
}

.sl-contact-back-form {
    margin: 0;
    width: 742px;
    max-width: 100%;
}

.sl-button-secondary {
    background: transparent;
    border: 1px solid var(--sl-border, #2b3140);
    color: var(--sl-text-muted, #aab2c4);
}

.sl-button-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--sl-text, #e6eaf2);
}
