@charset "UTF-8";
*{word-break:keep-all;}
.bg-image{
  background-image: url('../images/103_Saints.jpg'); /* 배경 이미지 경로 */
  background-size: cover;   /* 화면에 꽉 차게 */
  background-position: center; /* 중앙 정렬 */
  background-repeat: no-repeat; /* 반복 방지 */

}

.bg-black{background:var(--bs-black);}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.p-t-2r{top:2rem;}



/* 기본 (모바일): 가로 스크롤 */
.diocese-filter-wrap {
    display: flex;
    overflow-x: auto; /* 가로 스크롤 유지 */
    gap: 8px;
    padding-bottom: 6px;
    white-space: nowrap; /* 줄바꿈 방지 유지 */
}

.text-right{text-align:right;}
@media (min-width: 992px) {
    .diocese-filter-wrap {
        display: flex;
        flex-wrap: wrap;
        white-space: normal;
        overflow: visible;
        gap: 10px;
    }
    
    .diocese-filter-wrap > a {
        flex-grow: 0;
    }
}


@media (max-width: 1500px) {
    .navbar-brand{font-size:1rem;}
}