/*============================
 CONTENT PAGE
=============================*/

.title-block-single{
  padding: 90px 0;
}

.title-block-single h1{
  color: #f7f8fa;
  margin-bottom: 30px;
  font-size: 52px;
}

.content h1{
  margin-bottom: 30px;
}

.content h2{
  position: relative;
  font-size: 34px;
  margin: 30px 0 22px;
  padding-bottom: 14px;
}

/* accent underline */
.content h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-brand-teal);
  opacity: .9;
}

.content h3{
  font-size: 24px;
  margin: 20px 0 10px 0;
}

.content h4 {
    font-size: 19px;
    margin: 18px 0 5px 0;
}

.hero-subtitle{
  max-width: 670px;
  font-size: 15px;
  font-weight: 600;
  color: #f7f8fa;
  margin-bottom: 30px;
}

.hero-actions{
  display: flex;
  gap: 15px;
}


/*=============  TABLE  =============*/

.content .wp-block-table {
  margin: 32px 0 0;
  overflow-x: auto;
}

.content .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
  margin-bottom: 20px;
}

.content .wp-block-table thead th {
  background: var(--color-ink-deep);
  color: #ece5dc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  padding: 18px 20px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #ece5dc;
  white-space: nowrap;
  text-transform: uppercase;
}

.content .wp-block-table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 8px;
}

.status-pill--low {
  background: #e8f7ec;
  color: #1f8a4c;
}

.status-pill--low::before {
  background: #22c55e;
}

.status-pill--medium {
  background: #fbf3e3;
  color: #b7791f;
}

.status-pill--medium::before {
  background: #f59e0b;
}

.status-pill--high {
  background: #fdecec;
  color: #d14343;
}

.status-pill--high::before {
  background: #ef4444;
}

.status-pill--critical {
  background: #fee2e2;
  color: #b91c1c;
}

.status-pill--critical::before {
  background: #dc2626;
}

.content .wp-block-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(6, 18, 29, 0.09);
}

.content .wp-block-table tbody td {
  background: #fff;
}

.content img,
.content picture{
  width: 100%;
  object-fit: cover;
  display: block;
  height: 350px;
}

.intro-bg-page {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-bg-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(31 56 77 / 82%) 0%, rgba(7, 30, 51, .74) 44%, rgba(15, 54, 90, .50) 100%);
}

.intro-bg-page .container {
  width: 100%;
}

.title-block-single{
  position: relative;
  z-index: 2;
}

.content .wp-block-group{
  background: rgba(255, 255, 255, 0.82);
  border-radius:10px;
  padding: 27px 35px;
  margin:20px 0;
  border:1px solid rgba(15,30,43,.06);
}

.content .wp-block-separator {
  border: 0;
  height: 1px;
  background: rgba(15, 30, 43, 0.12);
  margin: 25px 0;
}

.content .wp-block-group h2:first-child{
  margin-top:0;
}

.content .wp-block-group p:last-child{
  margin-bottom:0;
}

/*============================
  CONTENT PAGE — CLEAN LISTS
=============================*/

.content ul,
.content ol {
  margin: 18px 0 22px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
}

.content ul {
  list-style: none;
}

.content ul li, .content ol li {
    position: relative;
    margin: 0 0 9px;
    color: var(--color-body-text);
    line-height: 26px;
    font-weight: 700;
}

ul li a{
  color: var(--color-brand-gold);
}

.content ul li:last-child,
.content ol li:last-child {
  margin-bottom: 18px;
}

/* bullet lists */
.content ul li {
  padding-left: 18px;
}

.content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  transform: translateY(-50%);
}

/* ordered lists */
.content ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 22px;
}

.content ol li {
  padding-left: 4px;
  font-weight: 600;
}

.content .wp-block-group ul,
.content .wp-block-group ol {
  margin: 18px 0 0;
}

.request-service-block{
  background-color: var(--color-bg-offwhite);
}