.pb-layout { max-width: 100%; }
.pb-row { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.pb-col { flex: 1; min-width: 0; }
.pb-col-1  { flex-basis: calc(100% / 12 * 1); }
.pb-col-2  { flex-basis: calc(100% / 12 * 2); }
.pb-col-3  { flex-basis: calc(100% / 12 * 3); }
.pb-col-4  { flex-basis: calc(100% / 12 * 4); }
.pb-col-5  { flex-basis: calc(100% / 12 * 5); }
.pb-col-6  { flex-basis: calc(100% / 12 * 6); }
.pb-col-7  { flex-basis: calc(100% / 12 * 7); }
.pb-col-8  { flex-basis: calc(100% / 12 * 8); }
.pb-col-9  { flex-basis: calc(100% / 12 * 9); }
.pb-col-10 { flex-basis: calc(100% / 12 * 10); }
.pb-col-11 { flex-basis: calc(100% / 12 * 11); }
.pb-col-12 { flex-basis: 100%; }

@media (max-width: 782px) {
	.pb-row { flex-direction: column; }
	.pb-col { flex-basis: 100% !important; }
}

.pb-heading { margin: 0 0 16px; }
.pb-text { margin: 0 0 16px; line-height: 1.6; }
.pb-image { margin: 0 0 16px; }
.pb-image img.pb-image-el { max-width: 100%; height: auto; border-radius: 4px; }

.pb-button-wrap { margin: 0 0 16px; }
.pb-btn { display: inline-block; padding: 10px 22px; border-radius: 4px; text-decoration: none; font-weight: 600; transition: all .2s ease; }
.pb-btn-solid { background: #1d4ed8; color: #fff; }
.pb-btn-solid:hover { background: #1e3a8a; color: #fff; }
.pb-btn-outline { background: transparent; color: #1d4ed8; border: 2px solid #1d4ed8; }
.pb-btn-outline:hover { background: #1d4ed8; color: #fff; }

.pb-slider { width: 100%; height: var(--pb-slider-height, 420px); border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.pb-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }

.pb-carousel { padding-bottom: 40px; margin-bottom: 20px; }
.pb-carousel-card { background: #fff; border: 1px solid #eaeaea; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.pb-carousel-card img { width: 100%; height: 180px; object-fit: cover; }
.pb-carousel-card h4, .pb-carousel-card p { padding: 0 14px; }
.pb-carousel-card h4 { margin: 10px 0 4px; }
.pb-carousel-card p { margin: 0 0 14px; color: #555; font-size: 14px; }

.pb-accordion { margin-bottom: 20px; border: 1px solid #e2e2e2; border-radius: 6px; overflow: hidden; }
.pb-accordion-item { border-bottom: 1px solid #e2e2e2; }
.pb-accordion-item:last-child { border-bottom: none; }
.pb-accordion-header { width: 100%; text-align: left; background: #f7f7f8; border: none; padding: 14px 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
.pb-accordion-item.is-open .pb-accordion-header { background: #eef2ff; }
.pb-accordion-icon { transition: transform .2s ease; }
.pb-accordion-item.is-open .pb-accordion-icon { transform: rotate(45deg); }
.pb-accordion-content { padding: 14px 16px; line-height: 1.6; }

.pb-video { position: relative; margin-bottom: 20px; }
.pb-video iframe { width: 100%; aspect-ratio: 16/9; }

.pb-icon-box { text-align: center; padding: 20px; margin-bottom: 20px; }
.pb-icon-box-icon { font-size: 34px; margin-bottom: 10px; }
.pb-icon-box-title { margin: 0 0 8px; }
.pb-icon-box-text { margin: 0; color: #555; }

.pb-spacer { width: 100%; }
.pb-divider { border: none; border-top: 1px solid #dddddd; margin: 20px 0; }
