/* Plus Content Styling */

/* Plus Content Badge */
.news__plus-badge {
    position: relative;
    margin-bottom: 1rem;
}

.plus-content-flag {
    display: inline-block;
    background: var(--company-primary-color, #059ad4);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Plus Content News Item Modifications */
.news--plus-content {
    position: relative;
    border: 2px solid var(--company-primary-color, #059ad4);
    border-radius: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #fff, #fef9f3);
}

.news--plus-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--company-primary-color, #059ad4);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0.1;
}

/* Plus Content Notice */
.news__plus-content-notice {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.news__plus-content-notice p {
    margin: 0;
    color: #e65100;
    font-weight: 500;
}

.news__plus-content-notice a {
    color: #d84315;
    text-decoration: underline;
    font-weight: 600;
}

.news__plus-content-notice a:hover {
    color: #bf360c;
}

/* News Detail Plus Content Styling */
.news-detail--plus-content {
    border: 2px solid var(--company-primary-color, #059ad4);
    padding: 2rem;
    background: linear-gradient(145deg, #fff, #fef9f3);
    margin-bottom: 2rem;
}

.news-detail__plus-content-notice {
    background: var(--company-primary-color, #059ad4);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.news-detail__plus-content-notice h3 {
    color: white;
}

.news-detail__plus-content-notice h3 {
    color: white;
    margin-bottom: 1rem;
}

/* News Detail Header */
.news-detail__header {
    margin-bottom: 2rem;
}

.news-detail__date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* News Detail Content */
.news-detail__teaser {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.news-detail__text {
    line-height: 1.6;
    color: #333;
}

.news-detail__image {
    margin: 2rem 0;
    text-align: center;
}

.news-detail__image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-detail__image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.news-detail__footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.news-detail__author {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.plus-content-login-prompt p {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news--plus-content,
    .news-detail--plus-content {
        padding: 1rem;
    }

    .news-detail__plus-content-notice {
        padding: 1.5rem;
    }

    .plus-content-login-prompt h3 {
        font-size: 1.25rem;
    }

    .plus-content-login-prompt .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
}
