.article-add-options-2f4daed7 {
    width: 100%;
    margin: 20px 0;
    font-family: inherit;
    --color-base: #0A1E4A;
}

.article-header-2f4daed7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap; /* Ensures responsiveness */
    gap: 15px;
}

.article-header-2f4daed7 > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-header-title-2f4daed7 {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    line-height: 1.2;
}

.article-header-2f4daed7 p {
    margin: 0;
    line-height: 1.2;
}

.article-header-2f4daed7 a {
    color: var(--color-base);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-header-2f4daed7 a:hover {
    opacity: 0.8;
}

.share-wrapper-2f4daed7 {
    position: relative;
}

.article-share-button-2f4daed7 {
    background: #f1f5f9;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: var(--color-base);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-share-button-2f4daed7:hover {
    background: #e2e8f0;
}

.article-share-menu-2f4daed7 {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    z-index: 100;
}

.article-share-menu-2f4daed7 li {
    margin: 0;
    padding: 0;
}

.article-share-menu-2f4daed7 a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #4a5568 !important;
    text-decoration: none;
    font-size: 14px;
    gap: 10px;
    transition: background 0.3s ease;
}

.article-share-menu-2f4daed7 a:hover {
    background: #f8fafc;
    color: var(--color-base) !important;
}

.article-share-menu-2f4daed7 i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .article-header-2f4daed7 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .article-header-2f4daed7 > div {
        width: 100%;
        flex-direction: row; /* Horizontal layout for mobile */
        justify-content: space-between;
        align-items: center;
    }
    
    .share-wrapper-2f4daed7 {
        width: 100%;
    }
    
    .article-share-button-2f4daed7 {
        width: 100%;
        padding: 12px;
    }
    
    .article-share-menu-2f4daed7 {
        left: 0;
        right: 0;
        width: 100%;
    }
}
