/* ===== パレスチナ写真展: 地名見出し ===== */
.place-heading {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    padding: 0.5rem 1.3rem;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(13,110,253,0.28);
    margin-bottom: 1.35rem;
}
.place-heading i {
    font-size: 0.95rem;
    opacity: 0.9;
}
.place-heading .place-count {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255,255,255,0.25);
    padding: 0.12rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.1rem;
}

/* ===== パレスチナ写真展: 拡大モーダルの前後移動ボタン ===== */
.gmodal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.gmodal-nav:hover,
.gmodal-nav:focus {
    background: rgba(0,0,0,0.65);
    color: #fff;
}
.gmodal-prev { left: 0.5rem; }
.gmodal-next { right: 0.5rem; }

/* ===== パレスチナ写真展: サムネイル下の説明文（2行まで） ===== */
.gallery-caption-detail {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-top: 0.15rem;
}
