.news-details-section {
    background-color: var(--secondary-color);
}

.news-main-image {
    max-height: 380px;
    object-fit: cover;
    border-bottom: 4px solid var(--accent-secondary-color);
    transition: transform 0.4s ease;
}

.news-main-image:hover {
    transform: scale(1.02);
}

.news-title {
    color: var(--accent-color);
    font-size: 1.6rem;
    position: relative;
    padding-right: 10px;
}

.news-title .title-decor {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: var(--accent-secondary-color);
    border-radius: 3px;
}

.decor-line {
    width: 80px;
    height: 3px;
    background: var(--accent-secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.share-buttons button {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 6px;
    border: 1px solid var(--divider-color);
    color: var(--accent-color);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    font-size: 15px;
}

.share-buttons button:hover {
    background-color: var(--accent-secondary-color);
    color: var(--white-color);
    border-color: var(--accent-secondary-color);
    transform: scale(1.1);
}