@charset "UTF-8";

.tpl-scope-article_detail {
    background-color: #FFFFFF;
    padding: 60px 0 100px;
}

.tpl-scope-article_detail .tpl-article-wrap {
    margin: 0 auto;
}

.tpl-scope-article_detail .tpl-article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5a6270;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.25s ease;
}

.tpl-scope-article_detail .tpl-article-back:hover {
    color: #FF8800;
}

.tpl-scope-article_detail .tpl-article-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.tpl-scope-article_detail .tpl-article-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9CA3AF;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tpl-scope-article_detail .tpl-article-meta-sep {
    width: 20px;
    height: 2px;
    background-color: #FF8800;
}

.tpl-scope-article_detail .tpl-article-nav-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tpl-scope-article_detail .tpl-article-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #111827;
    color: #FFFFFF;
    transition: background-color 0.25s ease;
}

.tpl-scope-article_detail .tpl-article-nav-btn:hover {
    background-color: #FF8800;
}

.tpl-scope-article_detail .tpl-article-nav-btn-disabled {
    background-color: #E5E7EB;
    color: #9CA3AF;
    cursor: default;
    pointer-events: none;
}

.tpl-scope-article_detail .tpl-article-title {
    color: #111827;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 32px;
}

.tpl-scope-article_detail .tpl-article-cover {
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background-color: #111827;
    margin-bottom: 40px;
}

.tpl-scope-article_detail .tpl-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tpl-scope-article_detail .tpl-article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
}

.tpl-scope-article_detail .tpl-article-content img {
    max-width: 100%;
    height: auto;
}

.tpl-scope-article_detail .tpl-article-content h2 {
    color: #111827;
    font-size: 24px;
    font-weight: 800;
    margin: 44px 0 18px;
}

.tpl-scope-article_detail .tpl-article-content h3 {
    color: #111827;
    font-size: 19px;
    font-weight: 800;
    margin: 34px 0 14px;
}

.tpl-scope-article_detail .tpl-article-content p {
    margin: 0 0 20px;
}

.tpl-scope-article_detail .tpl-article-content a {
    color: #FF8800;
    text-decoration: underline;
}

.tpl-scope-article_detail .tpl-article-content strong {
    color: #111827;
    font-weight: 800;
}

.tpl-scope-article_detail .tpl-article-content blockquote {
    margin: 36px 0;
    padding: 6px 0 6px 28px;
    border-left: 4px solid #FF8800;
    color: #111827;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
}

.tpl-scope-article_detail .tpl-article-content blockquote p {
    margin: 0;
}

.tpl-scope-article_detail .tpl-article-content ul,
.tpl-scope-article_detail .tpl-article-content ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.tpl-scope-article_detail .tpl-article-content li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .tpl-scope-article_detail {
        padding: 40px 0 60px;
    }

    .tpl-scope-article_detail .tpl-article-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .tpl-scope-article_detail .tpl-article-cover {
        aspect-ratio: 4 / 3;
        margin-bottom: 28px;
    }
}