/*
 * Single Article CSS
 */

/* 1. Typography */
.hnp-article-title {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    line-height: 1.25;
    font-weight: 700;
}

.hnp-article-content {
    font-size: 1.15rem;
    /* 18px approx for readability */
    line-height: 1.7;
    color: #2c2c2c;
}

.hnp-article-content p {
    margin-bottom: 20px;
}

/* Image Captions */
.hnp-featured-image img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 2. Sticky Share Icons */
.share-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.2s;
    text-decoration: none !important;
}

.share-icon:hover {
    transform: scale(1.1);
    color: #fff !important;
}

/* 3. Tags */
.hnp-tags a {
    display: inline-block;
    background: #f1f1f1;
    color: #555;
    padding: 5px 12px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.hnp-tags a:hover {
    background: var(--hnp-red);
    color: #fff;
    text-decoration: none;
}

/* 4. Related Posts */
.hnp-related-news h6 a {
    color: var(--hnp-dark-gray);
    font-weight: 600;
    line-height: 1.4;
}

.hnp-related-news h6 a:hover {
    color: var(--hnp-red);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hnp-article-title {
        font-size: 1.8rem;
    }

    .hnp-article-content {
        font-size: 1.05rem;
    }
}