/* ── 市議会だよりページ ── */

.newsletter__intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3xl);
    line-height: var(--line-height-loose);
}

.newsletter__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.newsletter__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gray-300);
}

.newsletter__image-wrapper {
    background: var(--color-gray-100);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter__image-wrapper--multi {
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.newsletter__image-wrapper--multi .newsletter__image {
    max-height: 300px;
    flex-shrink: 0;
}

.newsletter__image {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.newsletter__info {
    padding: var(--space-lg);
}

.newsletter__info h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.newsletter__info time {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

/* SP用改行 */
.sp-only {
    display: inline;
}

@media (min-width: 768px) {
    .sp-only {
        display: none;
    }
}
