#articleChart {
    width: 100%;
    height: 100%;
    min-height: 350px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

#articleChart svg {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

/* Chart specific styling */
#articleChart {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

#articleChart svg {
    height: 100%;
    width: 100%;
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive chart container */
@media screen and (max-width: 767px) {
    #articleChart {
        width: 100%;
        height: 100%;
        min-height: 350px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    #articleChart svg {
        font-size: 12px;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 480px) {
    #articleChart {
        width: 100%;
        height: 100%;
        min-height: 350px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    #articleChart svg {
        font-size: 10px;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
    }
}
.share-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: 0.4rem;
}
.share-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f6f8ff;
    color: var(--text-color, #333);
    border: 1px solid #e7ecf5;
    transition: all .15s ease-in-out;
    text-decoration: none;
}
.share-links a:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.share-links i { font-size: 1rem; line-height: 1; }

/* Brand hover accents */
.share-links a.facebook:hover { color: #1877f2; background: #eef4ff; border-color: #d9e5ff; }
.share-links a.twitter:hover { color: #000; background: #f2f2f2; border-color: #e6e6e6; }
.share-links a.linkedin:hover { color: #0a66c2; background: #eef6ff; border-color: #d9e9ff; }
.share-links a.reddit:hover { color: #ff4500; background: #fff3ee; border-color: #ffd9c9; }
.share-links a.whatsapp:hover { color: #25d366; background: #edfff5; border-color: #d7f7e3; }
.share-links a.telegram:hover { color: #229ed9; background: #eef9ff; border-color: #d7f1ff; }
.share-links a.pinterest:hover { color: #e60023; background: #fff0f3; border-color: #ffd6df; }
.share-links a.tumblr:hover { color: #36465d; background: #eef1f5; border-color: #d9dee7; }

.details-container .detail-title-value-container { display: flex; align-items: center; gap: .35rem; }