/* blog-tailwind: 전역 default.css(img width:100% 등) 충돌 방지 */

#blog {
    width: 100%;
    box-sizing: border-box;
}

#blog *,
#blog *::before,
#blog *::after {
    box-sizing: border-box;
}

#blog img {
    width: auto;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#blog button {
    font-family: inherit;
    cursor: pointer;
}

#blog a {
    text-decoration: none;
}

#blog .blog-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* 목록 */
#blog-board .blog-hero {
    background: #000;
    color: #fff;
    padding: 3.5rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

#blog-board .blog-hero__label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #a3a3a3;
}

#blog-board .blog-hero__title {
    margin: 0.75rem 0 0;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.1;
}

#blog-board .blog-hero__desc {
    margin: 1rem 0 0;
    max-width: 42rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #d4d4d4;
}

#blog-board .blog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #d4d4d4;
}

#blog-board .blog-hero__meta-divider {
    display: none;
    width: 1px;
    height: 1rem;
    background: #404040;
}

#blog-board .blog-body {
    background: #fafafa;
    padding: 2.5rem 1rem;
}

#blog-board .blog-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

#blog-board .blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

#blog-board .blog-cat {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 9999px;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #404040;
    transition: background 0.2s;
}

#blog-board .blog-cat:hover {
    background: #f5f5f5;
}

#blog-board .blog-cat.is-active {
    background: #000;
    border-color: #000;
    color: #fff;
}

#blog-board .blog-search {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

#blog-board .blog-search__row {
    display: flex;
    gap: 0.5rem;
}

#blog-board .blog-search select,
#blog-board .blog-search input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    background: #fff;
    font-size: 0.875rem;
    color: #171717;
}

#blog-board .blog-search input[type="text"] {
    flex: 1;
    min-width: 0;
}

#blog-board .blog-search input[type="text"]:focus {
    outline: none;
    border-color: #000;
}

#blog-board .blog-search__btn {
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    background: #000;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

#blog-board .blog-search__btn:hover {
    background: #262626;
}

#blog-board .blog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

#blog-board .blog-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s;
}

#blog-board .blog-btn--outline {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #404040;
}

#blog-board .blog-btn--outline:hover {
    background: #f5f5f5;
}

#blog-board .blog-btn--primary {
    border: none;
    background: #000;
    color: #fff;
}

#blog-board .blog-btn--primary:hover {
    background: #262626;
}

#blog-board .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

#blog-board .blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

#blog-board .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#blog-board .blog-card__thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5f5f5;
}

#blog-board .blog-card__thumb img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    transition: transform 0.5s;
}

#blog-board .blog-card:hover .blog-card__thumb img {
    transform: scale(1.05);
}

#blog-board .blog-card__noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    color: #a3a3a3;
}

#blog-board .blog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #000;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

#blog-board .blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
}

#blog-board .blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #737373;
}

#blog-board .blog-card__category {
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: #f5f5f5;
    font-weight: 500;
    color: #404040;
}

#blog-board .blog-card__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

#blog-board .blog-card__title a {
    color: #171717;
}

#blog-board .blog-card__title a:hover {
    color: #000;
}

#blog-board .blog-card__excerpt {
    flex: 1;
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #525252;
}

#blog-board .blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
    font-size: 0.875rem;
}

#blog-board .blog-card__author {
    font-weight: 500;
    color: #404040;
}

#blog-board .blog-card__more {
    font-weight: 600;
    color: #000;
}

#blog-board .blog-card__more:hover {
    color: #525252;
}

#blog-board .blog-empty {
    padding: 5rem 1.5rem;
    border: 1px dashed #d4d4d4;
    border-radius: 1rem;
    background: #fff;
    text-align: center;
}

#blog-board .blog-empty__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #262626;
}

#blog-board .blog-empty__desc {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #737373;
}

#blog-board .blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

#blog-board .blog-pagination .pg_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

#blog-board .blog-pagination .pg_page,
#blog-board .blog-pagination .pg_current,
#blog-board .blog-pagination strong.pg_current {
    display: inline-flex;
    min-width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #404040;
    text-decoration: none;
}

#blog-board .blog-pagination strong.pg_current,
#blog-board .blog-pagination .pg_current {
    background: #000;
    border-color: #000;
    color: #fff;
}

#blog-board .blog-pagination .pg_page:hover {
    background: #f5f5f5;
}

/* 상세 */
#blog-view {
    width: 100%;
    padding: 1.5rem 1rem;
    padding-top: calc(10.5vw + 2.5rem);
    background: #f5f5f5;
}

#blog-view .blog-view-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

#blog-view .blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 9999px;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #262626;
}

#blog-view .blog-back:hover {
    background: #fafafa;
}

#blog-view .blog-back svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

#blog-view .blog-view-actions {
    display: flex;
    gap: 0.5rem;
}

#blog-view .blog-view-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 9999px;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    color: #404040;
}

#blog-view .blog-view-btn:hover {
    background: #fafafa;
}

#blog-view .blog-view-btn--danger {
    border-color: #fecdd3;
    color: #e11d48;
}

#blog-view .blog-view-btn--danger:hover {
    background: #fff1f2;
}

#blog-view .blog-article {
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

#blog-view .blog-article__media {
    position: relative;
    /* background: #000; */
}

#blog-view .blog-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

#blog-view .blog-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#blog-view .blog-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

#blog-view .blog-slide__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#blog-view .blog-slide__inner img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

#blog-view .blog-slide__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    font-size: 0.875rem;
    font-weight: 500;
    color: #737373;
}

#blog-view .blog-slide-prev,
#blog-view .blog-slide-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem !important;
    height: 2rem !important;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%);
    color: #262626;
}

#blog-view .blog-slide-prev {
    left: 0.75rem;
}

#blog-view .blog-slide-next {
    right: 0.75rem;
}

#blog-view .blog-slide-prev svg,
#blog-view .blog-slide-next svg {
    width: 1rem;
    height: 1rem;
}

#blog-view .blog-slide-dots {
    position: absolute;
    right: 0;
    bottom: 1rem;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 0.375rem;
}

#blog-view .blog-slide-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.2s, background 0.2s;
}

#blog-view .blog-slide-dot.is-active {
    width: 1.25rem;
    background: #fff;
}

#blog-view .blog-article__content {
    display: flex;
    flex-direction: column;
    min-height: 26rem;
    overflow: hidden;
}

#blog-view .blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

#blog-view .blog-avatar {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    overflow: hidden;
    border-radius: 9999px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

#blog-view .blog-avatar .pf_img {
    display: block;
    width: 100%;
    height: 100%;
}

#blog-view .blog-avatar .pf_img img,
#blog-view .blog-avatar img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

#blog-view .blog-author__name {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #171717;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#blog-view .blog-author__cat {
    margin: 0;
    font-size: 0.75rem;
    color: #737373;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#blog-view .blog-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

#blog-view .blog-post-title {
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #171717;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #111;
}

#blog-view .blog-content {
    margin-top: 0;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: #3d3d3d;
    word-break: break-word;
}

#blog-view .blog-content > *:first-child {
    margin-top: 0;
}

#blog-view .blog-content > p:first-of-type {
    font-size: 1.03125rem;
    line-height: 1.8;
    color: #292524;
}

#blog-view .blog-content p {
    margin: 0 0 1.15em;
}

#blog-view .blog-content h2 {
    margin: 2em 0 0.75em;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #111;
}

#blog-view .blog-content h3 {
    margin: 1.75em 0 0.65em;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.45;
    color: #1a1a1a;
}

#blog-view .blog-content h4,
#blog-view .blog-content h5,
#blog-view .blog-content h6 {
    margin: 1.5em 0 0.5em;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    color: #262626;
}

#blog-view .blog-content a {
    color: #1e40af;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(30, 64, 175, 0.35);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

#blog-view .blog-content a:hover {
    color: #111;
    text-decoration-color: #111;
}

#blog-view .blog-content strong,
#blog-view .blog-content b {
    font-weight: 600;
    color: #171717;
}

#blog-view .blog-content em,
#blog-view .blog-content i:not([class]) {
    font-style: italic;
    color: #525252;
}

#blog-view .blog-content ul,
#blog-view .blog-content ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

#blog-view .blog-content ul {
    list-style: disc;
}

#blog-view .blog-content ol {
    list-style: decimal;
}

#blog-view .blog-content li {
    display: list-item;
    margin: 0.45em 0;
    padding-left: 0.2em;
}

#blog-view .blog-content li::marker {
    color: #737373;
}

#blog-view .blog-content ul ul,
#blog-view .blog-content ol ol,
#blog-view .blog-content ul ol,
#blog-view .blog-content ol ul {
    margin: 0.35em 0 0.5em;
}

#blog-view .blog-content blockquote {
    margin: 1.5em 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid #171717;
    border-radius: 0 0.75rem 0.75rem 0;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    color: #44403c;
    font-size: 0.9375rem;
    line-height: 1.75;
}

#blog-view .blog-content blockquote p:last-child {
    margin-bottom: 0;
}

#blog-view .blog-content hr {
    margin: 2em 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d6d3d1 15%, #d6d3d1 85%, transparent);
}

#blog-view .blog-content img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 1.5em auto;
    border-radius: 0.875rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

#blog-view .blog-content figure {
    margin: 1.5em 0;
}

#blog-view .blog-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    text-align: center;
    color: #78716c;
}

#blog-view .blog-content table {
    width: 100%;
    margin: 1.5em 0;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.6;
}

#blog-view .blog-content th,
#blog-view .blog-content td {
    padding: 0.625rem 0.875rem;
    border: 1px solid #e7e5e4;
    text-align: left;
    vertical-align: top;
}

#blog-view .blog-content th {
    background: #fafaf9;
    font-weight: 600;
    color: #1c1917;
}

#blog-view .blog-content tr:nth-child(even) td {
    background: #fafaf9;
}

#blog-view .blog-content code {
    padding: 0.15em 0.45em;
    border-radius: 0.375rem;
    background: #f5f5f4;
    font-size: 0.875em;
    color: #292524;
}

#blog-view .blog-content pre {
    margin: 1.5em 0;
    padding: 1rem 1.25rem;
    overflow-x: auto;
    border-radius: 0.75rem;
    background: #1c1917;
    color: #f5f5f4;
    font-size: 0.8125rem;
    line-height: 1.65;
}

#blog-view .blog-content pre code {
    padding: 0;
    background: none;
    color: inherit;
}

#blog-view .blog-content iframe,
#blog-view .blog-content video {
    display: block;
    max-width: 100%;
    margin: 1.5em auto;
    border: 0;
    border-radius: 0.75rem;
}

#blog-view .blog-content .table-wrap {
    margin: 1.5em 0;
    overflow-x: auto;
    border: 1px solid #e7e5e4;
    border-radius: 0.75rem;
}

#blog-view .blog-content .table-wrap table {
    margin: 0;
}

#blog-view .blog-attach {
    margin: 1.25rem 0;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #fafafa;
}

#blog-view .blog-attach__label {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #737373;
}

#blog-view .blog-attach ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#blog-view .blog-attach li + li {
    margin-top: 0.5rem;
}

#blog-view .blog-attach a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #262626;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#blog-view .blog-article__footer {
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
}

#blog-view .blog-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #525252;
}

#blog-view .blog-stats strong {
    color: #171717;
}

#blog-view .blog-date {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a3a3a3;
}

#blog-view .blog-nav {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
}

#blog-view .blog-nav a {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #fafafa;
    transition: background 0.2s;
}

#blog-view .blog-nav a:hover {
    background: #f5f5f5;
}

#blog-view .blog-nav__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #737373;
}

#blog-view .blog-nav__title {
    margin: 0.25rem 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 600;
    color: #262626;
}

/* 댓글 */
#blog-view .blog-comments__title {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #171717;
}

#blog-view .blog-comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#blog-view .blog-comment-list > li + li {
    margin-top: 1rem;
}

#blog-view .blog-comment {
    display: flex;
    gap: 0.75rem;
}

#blog-view .blog-comment__avatar {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    overflow: hidden;
    border-radius: 9999px;
    background: #f5f5f5;
}

#blog-view .blog-comment__avatar .pf_img,
#blog-view .blog-comment__avatar .pf_img img,
#blog-view .blog-comment__avatar img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

#blog-view .blog-comment__bubble {
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    background: #fafafa;
}

#blog-view .blog-comment__name {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #171717;
}

#blog-view .blog-comment__text {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #404040;
    word-break: break-word;
}

#blog-view .blog-comment__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding: 0 0.25rem;
    font-size: 0.75rem;
    color: #737373;
}

#blog-view .blog-comment__meta button,
#blog-view .blog-comment__meta a {
    border: none;
    background: none;
    padding: 0;
    font-size: inherit;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
}

#blog-view .blog-comment__meta a.blog-comment__del {
    color: #f43f5e;
}

#blog-view .blog-comment-empty {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: #fafafa;
    text-align: center;
    font-size: 0.875rem;
    color: #737373;
}

#blog-view .blog-comment-form {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f5f5f5;
}

#blog-view .blog-comment-form__inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

#blog-view .blog-comment-form__fields {
    flex: 1;
    min-width: 0;
}

#blog-view .blog-comment-form__guest {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

#blog-view .blog-comment-form input[type="text"],
#blog-view .blog-comment-form input[type="password"],
#blog-view .blog-comment-form textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-family: inherit;
}

#blog-view .blog-comment-form textarea {
    min-height: 5.5rem;
    resize: vertical;
}

#blog-view .blog-comment-form textarea:focus,
#blog-view .blog-comment-form input:focus {
    outline: none;
    border-color: #000;
}

#blog-view .blog-comment-form__submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

#blog-view .blog-comment-form__hint {
    margin: 0;
    font-size: 0.75rem;
    color: #a3a3a3;
}

#blog-view .blog-comment-form__submit {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 9999px;
    background: #000;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

#blog-view .blog-comment-form__submit:hover {
    background: #262626;
}

/* 캡차 */
#blog #captcha {
    display: block !important;
    float: none !important;
    position: relative !important;
    width: auto !important;
    max-width: 100%;
    min-height: 3rem;
    margin: 0.75rem 0 !important;
    padding-left: 6.5rem;
}

#blog #captcha legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

#blog #captcha #captcha_img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 6.3125rem !important;
    height: 2.6875rem !important;
    max-width: none !important;
    border: 1px solid #e4eaec !important;
}

#blog #captcha #captcha_mp3,
#blog #captcha #captcha_reload {
    position: absolute !important;
    left: 6.3125rem !important;
    width: 1.4375rem !important;
    height: 1.375rem !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
    cursor: pointer;
}

#blog #captcha #captcha_mp3 {
    top: 0 !important;
}

#blog #captcha #captcha_reload {
    top: 1.3125rem !important;
}

#blog #captcha #captcha_mp3 span,
#blog #captcha #captcha_reload span {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 1.4375rem !important;
    height: 1.375rem !important;
    max-width: none !important;
}

#blog #captcha #captcha_key {
    position: absolute !important;
    top: 0 !important;
    left: 6.3125rem !important;
    width: 8rem !important;
    height: 2.6875rem !important;
    max-width: calc(100% - 6.5rem) !important;
    padding: 0 0.5rem !important;
    border: 1px solid #e4eaec !important;
    font-size: 0.875rem !important;
}

#blog #captcha #captcha_info {
    display: block !important;
    margin-top: 3.25rem !important;
    font-size: 0.75rem;
    color: #737373;
}

/* 반응형 */
@media (min-width: 640px) {
    #blog-board .blog-hero {
        padding: 4rem 1.5rem;
    }

    #blog-board .blog-body {
        padding: 3.5rem 1.5rem;
    }

    #blog-board .blog-hero__meta-divider {
        display: block;
    }

    #blog-board .blog-search {
        flex-direction: row;
        max-width: 36rem;
        margin-left: 0;
    }

    #blog-board .blog-search select {
        width: auto;
        min-width: 7rem;
    }

    #blog-board .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #blog-view {
        padding: 2.5rem 1.5rem;
        padding-top: calc(10.5vw + 2.5rem);
    }

    #blog-view .blog-comment-form__guest {
        grid-template-columns: repeat(2, 1fr);
    }

    #blog-view .blog-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    #blog-view .blog-nav a.blog-nav__next {
        text-align: right;
    }

    #blog-view .blog-post-title {
        font-size: 1.5rem;
    }

    #blog-view .blog-content {
        font-size: 1rem;
    }

    #blog-view .blog-content > p:first-of-type {
        font-size: 1.0625rem;
    }

    #blog-view .blog-content h2 {
        font-size: 1.375rem;
    }
}

@media (min-width: 1081px) {
    #blog-view {
        padding-top: calc(3.645vw + 2.5rem);
    }
}

@media (min-width: 1024px) {
    #blog-board .blog-hero {
        padding: 5rem 2rem;
    }

    #blog-board .blog-body {
        padding: 3.5rem 2rem;
    }

    #blog-board .blog-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #blog-board .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #blog-view .blog-article {
        display: flex;
        min-height: 35rem;
    }

    #blog-view .blog-article__media {
        width: 58%;
        flex-shrink: 0;
    }

    #blog-view .blog-article__content {
        width: 42%;
    }

    #blog-view .blog-scroll {
        max-height: 26.25rem;
    }
}
