/* News Detail Page Styles */

/* Page Title Glitch Effect - News用の画像に上書き */
.page-title::before,
.page-title::after {
    background-image: url('../img/common/footer_menu03.svg?v=20251030');
}

/* News Detail Section */
.news-detail-section {
    padding: 80px 0;
}

.news-detail {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* Featured Image */
.news-featured-image {
    width: 100%;
    height: 400px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Meta */
.article-meta {
    display: flex;
    gap: 20px;
    padding: 30px 40px 20px;
    align-items: center;
}

.article-category {
    background-color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.article-date {
    font-size: 14px;
    color: var(--text-gray);
}

/* Article Title */
.article-title {
    font-size: 28px;
    color: var(--primary-orange);
    padding: 0 40px 30px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    margin-bottom: 30px;
}

/* Article Content */
.article-content {
    padding: 0 40px 40px;
}

.article-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 30px;
}

.article-image {
    width: 100%;
    margin: 40px 0;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.nav-btn {
    padding: 15px 35px;
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover {
    background-color: var(--primary-orange);
    color: white;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn:disabled:hover {
    background-color: transparent;
    color: var(--primary-orange);
}

.view-all-btn {
    background-color: var(--primary-orange);
    color: white;
}

.view-all-btn:hover {
    background-color: #ff6a33;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .news-featured-image {
        height: 250px;
    }

    .article-meta {
        padding: 20px 20px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-title {
        font-size: 22px;
        padding: 0 20px 20px;
    }

    .article-content {
        padding: 0 20px 30px;
    }

    .article-content p {
        font-size: 14px;
    }

    .article-navigation {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
