.sgr-blog-hero-copy {
    display: grid;
    gap: 10px;
    padding: 18px 18px 16px;
    border: 2px solid #20305d;
    background:
        linear-gradient(rgba(28, 44, 88, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 44, 88, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 252, 244, 0.98) 0%, rgba(247, 237, 210, 0.98) 100%);
    background-size: 22px 22px, 22px 22px, auto;
    box-shadow: 6px 6px 0 rgba(4, 10, 27, 0.14);
}

.sgr-blog-hero-copy h1 {
    max-width: 860px;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.sgr-blog-hero-body {
    max-width: 880px;
    margin: 0;
    color: #20305d;
    font-size: 0.96rem;
    line-height: 1.7;
}

.sgr-blog-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.sgr-blog-hero-note,
.sgr-blog-hero-current-topic {
    margin: 0;
    color: #20305d;
    font-size: 0.82rem;
    line-height: 1.5;
}

.sgr-blog-hero-current-topic {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 2px solid #243568;
    background: rgba(255, 255, 255, 0.92);
    font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
}

.sgr-blog-topic-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.sgr-blog-topic-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
    border: 2px solid rgba(244, 233, 199, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(248, 241, 221, 0.92);
    font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.sgr-blog-topic-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
}

.sgr-blog-topic-chip.is-active,
.sgr-blog-topic-chip:hover,
.sgr-blog-topic-chip:focus-visible {
    border-color: #243568;
    background: linear-gradient(180deg, rgba(255, 249, 236, 1) 0%, rgba(244, 233, 199, 1) 100%);
    color: #13203f;
}

.sgr-blog-topic-chip.is-active span,
.sgr-blog-topic-chip:hover span,
.sgr-blog-topic-chip:focus-visible span {
    background: rgba(19, 32, 63, 0.08);
}

.sgr-blog-feature-card {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 1fr);
    gap: 0;
    margin-top: 0;
    border: 2px solid #20305d;
    background: linear-gradient(180deg, rgba(255, 252, 244, 0.98) 0%, rgba(242, 233, 207, 0.98) 100%);
    box-shadow: 8px 8px 0 rgba(6, 12, 33, 0.14);
    overflow: hidden;
}

.sgr-blog-feature-thumb {
    display: block;
    min-height: 100%;
    background: #d9e0f4;
}

.sgr-blog-feature-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: 16 / 9.4;
    object-fit: cover;
}

.sgr-blog-feature-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
}

.sgr-blog-feature-label {
    margin: 0;
    color: #ff8c72;
    font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sgr-blog-feature-body h3 a {
    color: #13203f;
    font-size: clamp(1.36rem, 2vw, 1.9rem);
    line-height: 1.12;
    text-decoration: none;
}

.sgr-blog-feature-body p {
    margin: 0;
    color: #2b395f;
    font-size: 0.92rem;
    line-height: 1.62;
}

.sgr-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.sgr-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 2px solid #20305d;
    background: linear-gradient(180deg, rgba(255, 252, 244, 0.98) 0%, rgba(242, 233, 207, 0.98) 100%);
    box-shadow: 6px 6px 0 rgba(6, 12, 33, 0.14);
    overflow: hidden;
}

.sgr-blog-card-thumb {
    display: block;
    background: #d9e0f4;
}

.sgr-blog-card-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sgr-blog-card-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 24px;
    color: #20305d;
    font-family: "Press Start 2P", "Do Hyeon", sans-serif;
    font-size: 0.82rem;
    text-align: center;
}

.sgr-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px 20px;
}

.sgr-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: #576789;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.sgr-blog-card h3 a {
    color: #13203f;
    font-size: 1.42rem;
    line-height: 1.2;
    text-decoration: none;
}

.sgr-blog-card p {
    margin: 0;
    color: #2b395f;
    font-size: 0.94rem;
    line-height: 1.68;
}

.sgr-blog-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: #2649b8;
    font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
    font-size: 0.96rem;
    text-decoration: none;
}

.sgr-blog-result-count {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 14px;
    padding: 0 12px;
    border: 2px solid rgba(244, 233, 199, 0.56);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 241, 221, 0.88);
    font-family: "Do Hyeon", "Noto Sans KR", sans-serif;
    font-size: 0.88rem;
}

.sgr-blog-listing {
    margin-top: 0;
}

.sgr-blog-pagination {
    margin-top: 28px;
}

.sgr-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin: 0 6px 6px 0;
    border: 2px solid #243568;
    background: rgba(255, 255, 255, 0.9);
    color: #13203f;
    text-decoration: none;
}

.sgr-blog-pagination .current {
    background: linear-gradient(180deg, rgba(255, 249, 236, 1) 0%, rgba(244, 233, 199, 1) 100%);
}

.sgr-blog-empty {
    padding: 20px 20px;
    border: 2px solid rgba(245, 236, 211, 0.34);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.sgr-blog-empty h3 {
    color: #f8f1dd;
}

.sgr-blog-empty p {
    margin: 12px 0 0;
    color: rgba(243, 239, 228, 0.78);
    line-height: 1.75;
}
