*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#eef3f9;color:#1f2937}
a{text-decoration:none}
img,video{max-width:100%;display:block}

/* GLOBAL TYPOGRAPHY */
body, input, textarea, select, button{
  font-family:Arial,Helvetica,sans-serif;
}

.sb-admin-body{background:#eef3f9}

/* ADMIN LAYOUT */
.sb-admin-wrap{
  display:grid;
  grid-template-columns:360px 1fr;
  min-height:100vh;
}

.sb-sidebar{
  background:linear-gradient(180deg,#0f172a 0%, #111827 100%);
  color:#fff;
  padding:20px;
  overflow:auto;
  border-right:1px solid rgba(255,255,255,.08);
}

.sb-logo-box{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:18px;
}

.sb-logo{
  font-size:24px;
  font-weight:800;
  letter-spacing:.2px;
}

.sb-logo-sub{
  margin-top:4px;
  font-size:13px;
  color:#cbd5e1;
}

.sb-panel{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:16px;
  border-radius:18px;
  margin-bottom:16px;
  backdrop-filter:blur(6px);
}

.sb-panel h3{
  margin:0 0 12px;
  font-size:16px;
  color:#fff;
}

.sb-panel label{
  display:block;
  margin:0 0 6px;
  font-size:13px;
  color:#cbd5e1;
  font-weight:600;
}

.sb-panel input,
.sb-panel select,
.sb-panel textarea,
.sb-panel button{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid #334155;
  margin-bottom:10px;
  font-size:14px;
  outline:none;
}

.sb-panel input,
.sb-panel select,
.sb-panel textarea{
  background:#0b1220;
  color:#fff;
}

.sb-panel input::placeholder,
.sb-panel textarea::placeholder{
  color:#94a3b8;
}

.sb-panel textarea{
  min-height:90px;
  resize:vertical;
}

.sb-btn-primary{
  cursor:pointer;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  border:none !important;
  font-weight:700;
  box-shadow:0 8px 18px rgba(37,99,235,.28);
  transition:all .2s ease;
}

.sb-btn-primary:hover{
  transform:translateY(-1px);
}

/* UPLOAD PANEL */
.sb-upload-panel{
  padding:18px;
}

.sb-upload-card{
  background:#0b1220;
  border:1px solid #223149;
  border-radius:16px;
  padding:14px;
  margin-bottom:12px;
}

.sb-upload-head{
  font-size:14px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

.sb-file-input{
  background:#0f172a !important;
  color:#cbd5e1 !important;
  border:1px dashed #3b82f6 !important;
  padding:12px !important;
  cursor:pointer;
}

.sb-file-input::file-selector-button{
  background:#1d4ed8;
  color:#fff;
  border:none;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  margin-right:10px;
}

.sb-result-label{
  margin-top:6px;
}

.sb-upload-result{
  min-height:120px !important;
  background:#08111f !important;
  color:#dbeafe !important;
  border:1px solid #1e3a5f !important;
}

/* CONTENT */
.sb-content{
  padding:22px;
}

.sb-main-card{
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 14px 34px rgba(15,23,42,.08);
  border:1px solid #e7edf5;
}

.sb-topbar{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.sb-topbar h1{
  margin:0;
  font-size:28px;
  color:#0f172a;
}

.sb-topbar-sub{
  margin-top:6px;
  color:#64748b;
  font-size:14px;
}

.sb-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.sb-actions button,
.sb-actions a{
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:12px;
  padding:10px 14px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(37,99,235,.16);
  transition:all .2s ease;
}

.sb-actions button:hover,
.sb-actions a:hover{
  transform:translateY(-1px);
}

.sb-actions .gray{background:#64748b}
.sb-actions .green{background:#16a34a}

.sb-divider{
  margin:24px 0;
  border:none;
  border-top:1px solid #e5e7eb;
}

/* MESSAGES */
.sb-notice-success{
  padding:12px 14px;
  background:#dcfce7;
  color:#166534;
  border-radius:12px;
  margin-bottom:12px;
}

.sb-notice-warn{
  padding:12px 14px;
  background:#fef3c7;
  color:#92400e;
  border-radius:12px;
  margin-bottom:12px;
}

.sb-muted{
  color:#94a3b8;
  font-size:13px;
}

/* BUILDER */
.sb-builder-area{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.sb-section-card{
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:20px;
  padding:16px;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
}

.sb-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.sb-section-head h3{
  margin:0;
  font-size:18px;
  color:#0f172a;
}

.sb-inline-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.sb-inline-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.sb-full{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  background:#fff;
  color:#111827;
  outline:none;
}

.sb-small-btn{
  padding:8px 12px;
  border:none;
  border-radius:10px;
  background:#334155;
  color:#fff;
  cursor:pointer;
  font-weight:700;
  transition:all .2s ease;
}

.sb-small-btn:hover{
  transform:translateY(-1px);
}

.sb-del-btn{background:#dc2626}
.sb-add-item{background:#16a34a}

.sb-repeater-item{
  border:1px solid #dbe3ef;
  background:#f8fbff;
  border-radius:16px;
  padding:12px;
  margin-bottom:12px;
}

/* MEDIA PICKER */
.sb-media-picker{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:10px;
  align-items:center;
}

.sb-media-thumb{
  width:80px;
  height:60px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid #dbe4ee;
  background:#eef2f7;
}

.sb-no-thumb{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#64748b;
}

/* PAGE LIST */
.sb-page-list h2{
  margin:0 0 14px;
  color:#0f172a;
}

.sb-page-list table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  overflow:hidden;
  border-radius:16px;
}

.sb-page-list th,
.sb-page-list td{
  padding:12px 10px;
  border-bottom:1px solid #e5e7eb;
  text-align:left;
  font-size:14px;
}

.sb-page-list th{
  background:#f8fafc;
  color:#334155;
}

.sb-page-list tr:hover{
  background:#f8fafc;
}

/* EXPORT LINKS */
.sb-link-btn{
  display:block;
  background:#2563eb;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  text-align:center;
  font-weight:700;
  margin-bottom:10px;
}

.sb-link-btn-sub{
  background:#334155;
}

/* FRONT SIDE */
.sb-front-body{
  background:#fff;
  color:#1f2937;
}

.sb-section{
  position:relative;
}

.sb-container{
  width:100%;
  margin:0 auto;
  padding-left:16px;
  padding-right:16px;
}

.sb-width-full .sb-container{max-width:100%}
.sb-width-normal .sb-container{max-width:1200px}
.sb-width-narrow .sb-container{max-width:860px}

/* HERO */
.sb-hero{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background:#111827 center/cover no-repeat;
  display:flex;
  align-items:center;
}

.sb-hero-overlay{position:absolute;inset:0}

.sb-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:60px 30px;
  color:#fff;
}

.sb-align-left{text-align:left}
.sb-align-center{text-align:center}
.sb-align-right{text-align:right}

.sb-hero h1{
  font-size:42px;
  line-height:1.15;
  margin:0 0 14px;
  font-weight:800;
}

.sb-hero p{
  font-size:18px;
  line-height:1.7;
  margin:0 0 18px;
  max-width:760px;
}

.sb-align-center .sb-hero p{
  margin-left:auto;
  margin-right:auto;
}

.sb-align-right .sb-hero p{
  margin-left:auto;
}

.sb-btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}

.sb-align-left .sb-btn-row{justify-content:flex-start}
.sb-align-right .sb-btn-row{justify-content:flex-end}

.sb-btn{
  display:inline-block;
  background:#2563eb;
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-weight:600;
  transition:all .2s ease;
}

.sb-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(37,99,235,.20);
}

.sb-btn-light{
  background:#fff;
  color:#111827;
}

.sb-btn-small{
  padding:10px 14px;
  font-size:13px;
}

/* COMMON SECTION TITLE */
.sb-sec-title{
  font-size:30px;
  line-height:1.25;
  margin:0 0 18px;
  color:#0f172a;
  font-weight:800;
}

/* CONTENT TYPOGRAPHY BLOCKS */
.sb-richtext,
.sb-media-text,
.sb-notice,
.sb-cta,
.sb-section{
  font-size:16px;
  line-height:1.7;
}

.sb-richtext h1,
.sb-media-text h1,
.sb-notice h1,
.sb-cta h1,
.sb-section .sb-html-block h1{
  font-size:42px;
  line-height:1.15;
  font-weight:800;
  margin:0 0 18px;
  color:inherit;
}

.sb-richtext h2,
.sb-media-text h2,
.sb-notice h2,
.sb-cta h2,
.sb-section .sb-html-block h2{
  font-size:34px;
  line-height:1.2;
  font-weight:800;
  margin:0 0 16px;
  color:inherit;
}

.sb-richtext h3,
.sb-media-text h3,
.sb-notice h3,
.sb-cta h3,
.sb-section .sb-html-block h3{
  font-size:28px;
  line-height:1.28;
  font-weight:700;
  margin:0 0 14px;
  color:inherit;
}

.sb-richtext h4,
.sb-media-text h4,
.sb-notice h4,
.sb-cta h4,
.sb-section .sb-html-block h4{
  font-size:22px;
  line-height:1.35;
  font-weight:700;
  margin:0 0 12px;
  color:inherit;
}

.sb-richtext h5,
.sb-media-text h5,
.sb-notice h5,
.sb-cta h5,
.sb-section .sb-html-block h5{
  font-size:18px;
  line-height:1.4;
  font-weight:700;
  margin:0 0 10px;
  color:inherit;
}

.sb-richtext h6,
.sb-media-text h6,
.sb-notice h6,
.sb-cta h6,
.sb-section .sb-html-block h6{
  font-size:16px;
  line-height:1.45;
  font-weight:700;
  margin:0 0 10px;
  color:inherit;
  letter-spacing:.3px;
}

.sb-richtext p,
.sb-media-text p,
.sb-notice p,
.sb-cta p,
.sb-section .sb-html-block p{
  font-size:16px;
  line-height:1.8;
  margin:0 0 14px;
  color:inherit;
}

.sb-richtext ul,
.sb-richtext ol,
.sb-media-text ul,
.sb-media-text ol,
.sb-notice ul,
.sb-notice ol,
.sb-cta ul,
.sb-cta ol,
.sb-section .sb-html-block ul,
.sb-section .sb-html-block ol{
  margin:0 0 16px 22px;
  padding:0;
}

.sb-richtext li,
.sb-media-text li,
.sb-notice li,
.sb-cta li,
.sb-section .sb-html-block li{
  margin-bottom:8px;
  line-height:1.8;
}

.sb-richtext a,
.sb-media-text a,
.sb-notice a,
.sb-cta a,
.sb-section .sb-html-block a{
  color:#0b57d0;
  text-decoration:none;
  font-weight:600;
  word-break:break-word;
}

.sb-richtext a:hover,
.sb-media-text a:hover,
.sb-notice a:hover,
.sb-cta a:hover,
.sb-section .sb-html-block a:hover{
  text-decoration:underline;
}

.sb-richtext strong,
.sb-media-text strong,
.sb-notice strong,
.sb-cta strong,
.sb-section .sb-html-block strong{
  font-weight:800;
}

.sb-richtext em,
.sb-media-text em,
.sb-notice em,
.sb-cta em,
.sb-section .sb-html-block em{
  font-style:italic;
}

.sb-richtext blockquote,
.sb-media-text blockquote,
.sb-notice blockquote,
.sb-cta blockquote,
.sb-section .sb-html-block blockquote{
  margin:18px 0;
  padding:14px 18px;
  border-left:4px solid #2563eb;
  background:#f8fbff;
  border-radius:0 14px 14px 0;
  color:#334155;
}

.sb-richtext hr,
.sb-media-text hr,
.sb-notice hr,
.sb-cta hr,
.sb-section .sb-html-block hr{
  border:none;
  border-top:1px solid #dbe4ee;
  margin:22px 0;
}

.sb-richtext img,
.sb-media-text img,
.sb-notice img,
.sb-cta img,
.sb-section .sb-html-block img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  margin:12px 0;
}

.sb-richtext table,
.sb-media-text table,
.sb-notice table,
.sb-cta table,
.sb-section .sb-html-block table{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
}

.sb-richtext th,
.sb-richtext td,
.sb-media-text th,
.sb-media-text td,
.sb-notice th,
.sb-notice td,
.sb-cta th,
.sb-cta td,
.sb-section .sb-html-block th,
.sb-section .sb-html-block td{
  border:1px solid #dbe4ee;
  padding:10px;
  text-align:left;
}

.sb-richtext th,
.sb-media-text th,
.sb-notice th,
.sb-cta th,
.sb-section .sb-html-block th{
  background:#eff6ff;
}

.sb-richtext pre,
.sb-media-text pre,
.sb-notice pre,
.sb-cta pre,
.sb-section .sb-html-block pre{
  background:#0f172a;
  color:#e2e8f0;
  padding:14px;
  border-radius:14px;
  overflow:auto;
  margin:16px 0;
}

.sb-richtext code,
.sb-media-text code,
.sb-notice code,
.sb-cta code,
.sb-section .sb-html-block code{
  background:#eef2ff;
  color:#1e3a8a;
  padding:2px 6px;
  border-radius:6px;
  font-size:.92em;
}

.sb-richtext pre code,
.sb-media-text pre code,
.sb-notice pre code,
.sb-cta pre code,
.sb-section .sb-html-block pre code{
  background:transparent;
  color:inherit;
  padding:0;
}

/* MEDIA BLOCK */
.sb-media-block{
  display:grid;
  gap:24px;
  align-items:center;
}

.sb-media-left{grid-template-columns:1fr 1fr}
.sb-media-right{grid-template-columns:1fr 1fr}
.sb-media-right .sb-media-visual{order:2}
.sb-media-right .sb-media-text{order:1}
.sb-media-top{grid-template-columns:1fr}
.sb-media-bottom{grid-template-columns:1fr}
.sb-media-bottom .sb-media-visual{order:2}
.sb-media-bottom .sb-media-text{order:1}

.sb-media-visual img,
.sb-media-visual video{
  border-radius:18px;
  width:100%;
}

.sb-media-text h2{
  margin-top:0;
}

/* CARDS */
.sb-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.sb-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:18px;
}

.sb-card-style-shadow .sb-card{
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.sb-card-style-border .sb-card{
  box-shadow:none;
  border:2px solid #cbd5e1;
}

.sb-card-style-flat .sb-card{
  box-shadow:none;
  background:#f8fafc;
}

.sb-card img{
  border-radius:14px;
  margin-bottom:12px;
  width:100%;
  height:220px;
  object-fit:cover;
}

.sb-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
}

.sb-card p{
  margin:0 0 12px;
  color:#475569;
  line-height:1.7;
}

/* TABLE */
.sb-table-wrap{
  overflow:auto;
}

.sb-table-wrap table{
  width:100%;
  border-collapse:collapse;
}

.sb-table-wrap th,
.sb-table-wrap td{
  border:1px solid #dbe4ee;
  padding:10px;
}

.sb-table-wrap th{
  background:#eff6ff;
}

/* GALLERY */
.sb-gallery{
  display:grid;
  gap:14px;
}

.sb-gallery-item{
  position:relative;
}

.sb-gallery-open{
  display:block;
  width:100%;
  border:none;
  background:transparent;
  padding:0;
  margin:0;
  cursor:pointer;
}

.sb-gallery-open img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:16px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.sb-gallery-open:hover img{
  transform:scale(1.02);
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.sb-gallery-item video{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:16px;
  background:#000;
}

.sb-gallery-cap{
  font-size:14px;
  margin-top:8px;
  color:#475569;
}

/* PDF */
.sb-pdf-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sb-pdf-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  color:#111827;
}

/* VIDEO */
.sb-video-wrap video,
.sb-video-wrap iframe{
  width:100%;
  border-radius:18px;
}

.sb-video-wrap video{
  max-height:520px;
  background:#000;
}

.sb-iframe-box{
  position:relative;
  padding-top:56.25%;
  border-radius:18px;
  overflow:hidden;
}

.sb-iframe-box iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* FAQ */
.sb-faq{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sb-faq details{
  border-radius:14px;
  padding:14px;
  background:#fff;
}

.sb-faq-style-boxed details{
  border:1px solid #e5e7eb;
}

.sb-faq-style-line details{
  border:none;
  border-bottom:1px solid #dbe4ee;
  border-radius:0;
  padding-left:0;
  padding-right:0;
}

.sb-faq summary{
  cursor:pointer;
  font-weight:700;
}

/* NOTICE */
.sb-notice{
  background:#fff7ed;
  border-left:5px solid #f97316;
  padding:20px;
  border-radius:14px;
}

/* CTA */
.sb-cta{
  text-align:center;
  background:linear-gradient(135deg,#1d4ed8,#0f172a);
  color:#fff;
  padding:40px 20px;
  border-radius:20px;
}

.sb-cta h2{
  margin-top:0;
  font-size:32px;
}

/* BUTTON SECTION */
.sb-button-box{
  text-align:center;
}

/* FORM */
.sb-form{
  display:grid;
  gap:14px;
}

.sb-form-row{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.sb-form-row label{
  font-weight:700;
  color:#334155;
}

.sb-form-row input,
.sb-form-row textarea{
  width:100%;
  padding:12px;
  border:1px solid #cbd5e1;
  border-radius:12px;
}

.sb-form-row textarea{
  min-height:130px;
}

.sb-success{
  padding:12px 14px;
  background:#dcfce7;
  color:#166534;
  border-radius:12px;
  margin-bottom:14px;
}

/* LIGHTBOX */
.sb-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.sb-lightbox-inner{
  max-width:92vw;
  max-height:90vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.sb-lightbox img{
  max-width:92vw;
  max-height:78vh;
  width:auto;
  height:auto;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}

.sb-lightbox-caption{
  margin-top:12px;
  color:#fff;
  font-size:15px;
  text-align:center;
}

.sb-lb-btn{
  position:absolute;
  background:rgba(255,255,255,.18);
  color:#fff;
  border:none;
  font-size:28px;
  width:52px;
  height:52px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sb-lb-btn:hover{
  background:rgba(255,255,255,.28);
}

.sb-lb-close{top:20px;right:20px}
.sb-lb-prev{left:20px;top:50%;transform:translateY(-50%)}
.sb-lb-next{right:20px;top:50%;transform:translateY(-50%)}

/* RESPONSIVE */
@media (max-width: 1200px){
  .sb-admin-wrap{grid-template-columns:320px 1fr}
}

@media (max-width: 992px){
  .sb-admin-wrap{grid-template-columns:1fr}
  .sb-inline-grid,
  .sb-inline-grid-3,
  .sb-cards,
  .sb-media-left,
  .sb-media-right{
    grid-template-columns:1fr;
  }

  .sb-gallery{
    grid-template-columns:repeat(2,1fr)!important;
  }

  .sb-content{
    padding:14px;
  }

  .sb-topbar{
    align-items:stretch;
  }

  .sb-richtext h1,
  .sb-media-text h1,
  .sb-notice h1,
  .sb-cta h1,
  .sb-section .sb-html-block h1{
    font-size:34px;
  }

  .sb-richtext h2,
  .sb-media-text h2,
  .sb-notice h2,
  .sb-cta h2,
  .sb-section .sb-html-block h2{
    font-size:30px;
  }

  .sb-richtext h3,
  .sb-media-text h3,
  .sb-notice h3,
  .sb-cta h3,
  .sb-section .sb-html-block h3{
    font-size:24px;
  }

  .sb-richtext h4,
  .sb-media-text h4,
  .sb-notice h4,
  .sb-cta h4,
  .sb-section .sb-html-block h4{
    font-size:20px;
  }
}

@media (max-width: 576px){
  .sb-sidebar{padding:14px}
  .sb-content{padding:10px}
  .sb-main-card{padding:14px}
  .sb-gallery{grid-template-columns:1fr!important}
  .sb-gallery-open img,
  .sb-gallery-item video{height:220px}
  .sb-hero-content{padding:34px 18px}
  .sb-hero h1{font-size:26px}
  .sb-hero p{font-size:16px}
  .sb-sec-title{font-size:24px}
  .sb-lb-prev{left:10px}
  .sb-lb-next{right:10px}
  .sb-lb-close{top:10px;right:10px}

  .sb-richtext h1,
  .sb-media-text h1,
  .sb-notice h1,
  .sb-cta h1,
  .sb-section .sb-html-block h1{
    font-size:28px;
  }

  .sb-richtext h2,
  .sb-media-text h2,
  .sb-notice h2,
  .sb-cta h2,
  .sb-section .sb-html-block h2{
    font-size:24px;
  }

  .sb-richtext h3,
  .sb-media-text h3,
  .sb-notice h3,
  .sb-cta h3,
  .sb-section .sb-html-block h3{
    font-size:21px;
  }

  .sb-richtext h4,
  .sb-media-text h4,
  .sb-notice h4,
  .sb-cta h4,
  .sb-section .sb-html-block h4{
    font-size:18px;
  }

  .sb-richtext p,
  .sb-media-text p,
  .sb-notice p,
  .sb-cta p,
  .sb-section .sb-html-block p{
    font-size:15px;
    line-height:1.75;
  }
}