/* お知らせページ専用スタイル */

.news-items {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.news-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.news-item__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-item__date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.news-item__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.news-item__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-item__description {
    line-height: 2;
    color: var(--text-medium);
}

/* Instagram */
.instagram-feed {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.instagram-placeholder {
    background-color: #fff;
    padding: 5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.instagram-placeholder i {
    font-size: 5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.instagram-placeholder p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.instagram-placeholder__note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.instagram-link {
    text-align: center;
}

.instagram-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .news-item {
        padding: 2rem 1.5rem;
    }

    .news-item__header {
        flex-wrap: wrap;
    }

    .news-item__title {
        font-size: 1.1rem;
    }

    .instagram-placeholder {
        padding: 3rem 1.5rem;
    }

    .instagram-placeholder i {
        font-size: 4rem;
    }
}
