/* Base article container */
.article-content {
    font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    margin: 0 auto;
    padding: 7rem;
    text-align: justify;
    hyphens: auto;
    font-weight: 700;
    background: rgba(200, 200, 255, 0.01);
    border-radius: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}




/* Big Close Button for Articles */
.close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a4a6a 0%, #7a6a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.close-button:hover {
    background: linear-gradient(135deg, #7a6a8a 0%, #9a8aaa 100%);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.close-button:active {
    transform: scale(0.95);
}

.close-icon {
    line-height: 1;
    margin-top: -3px;
}

/* Responsive adjustments for close button */
@media (max-width: 768px) {
    .close-button {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        top: 15px;
        right: 15px;
        
        
        

    }
}