/* Blog Detail Page Styles */

/* --- Article Hero --- */
.article-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(rgba(11, 15, 20, 0) 20%, var(--bg-dark) 100%),
        radial-gradient(ellipse at top, rgba(20, 26, 34, 0.8), transparent 70%);
    z-index: -2;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.article-meta span {
    margin-right: 20px;
}

.article-meta i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.article-tag {
    background: rgba(242, 183, 44, 0.15);
    color: var(--primary-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* --- Article Content --- */
.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(234, 239, 247, 0.85);
}

.article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: white;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 3px solid var(--primary-gold);
    padding: 20px 30px;
    margin: 30px 0;
    background: rgba(20, 26, 34, 0.6);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-light);
}

.article-content img {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 20px 0;
}

.article-content a {
    color: var(--primary-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: var(--primary-gold);
}

/* --- Sidebar --- */
.sidebar-box {
    background: rgba(20, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-box h5 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.related-post {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post:hover {
    padding-left: 5px;
}

.related-post-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.related-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title:hover {
    color: var(--primary-gold);
}

.related-post-date {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 3px;
}

/* --- Share Buttons --- */
.share-btn {
    width: 45px;
    height: 45px;
    background: rgba(20, 26, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.share-btn:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}