/*============================
 CONTENT PAGE
=============================*/

.title-block-single{
  max-width: 670px;
}

.content{
  padding: 60px 0 80px 0;
  background: var(--bg-soft);
}

.title-block-single h1{
  color: #f7f8fa;
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 60px;
}

.content h1{
  margin-bottom: 30px;
}

.content h2{
  position: relative;
  font-size: 38px;
  margin: 30px 0 22px;
  padding-bottom: 14px;
}

/* accent underline */
.content h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  border-radius: 999px;
  background: var(--gold);
  opacity: .9;
}

.content h3{
  font-size: 28px;
  margin: 27px 0 18px 0;
}

.content h4 {
    font-size: 14px;
    margin: 22px 0 5px 0;
    color: var(--text);
    font-weight: 600;
}

.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: rgba(21,22,26,.72);
  border: 1px solid rgba(244,239,232,.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  margin-bottom: 20px;
}

.content .wp-block-table thead th {
  background: rgba(8,7,7,.78);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  padding: 18px 20px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(244,239,232,.10);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.content .wp-block-table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(228,227,216,.78);
  background: rgba(21,22,26,.58);
}

.content .wp-block-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(244,239,232,.07);
}

/*=============  STATUS  =============*/

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex: 0 0 7px;
}

.status-pill--low {
  background: rgba(244,239,232,.045);
  color: rgba(228,227,216,.72);
  border: 1px solid rgba(244,239,232,.08);
}

.status-pill--low::before {
  background: rgba(228,227,216,.55);
}

.status-pill--medium {
  background: rgba(197,163,108,.13);
  color: var(--gold-soft);
  border: 1px solid rgba(197,163,108,.22);
}

.status-pill--medium::before {
  background: var(--gold);
}

.status-pill--high {
  background: rgba(75,21,28,.44);
  color: #e7c8ca;
  border: 1px solid rgba(157,58,68,.26);
}

.status-pill--high::before {
  background: #9d3a44;
}

.status-pill--critical {
  background: rgba(75,21,28,.66);
  color: #f0d6d8;
  border: 1px solid rgba(196,91,100,.30);
}

.status-pill--critical::before {
  background: #c45b64;
}

.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(3 11 16 / 80%) 40%, rgb(1 11 20 / 80%) 70%, rgb(28 20 12 / 90%) 100%);
}

.intro-bg-page .container {
  width: 100%;
}

.title-block-single{
  position: relative;
  z-index: 2;
}

.content .wp-block-group{
  background: var(--group-bg);
  border-radius:7px;
  padding: 27px 35px;
  margin: 30px 0;
}

.content .wp-block-separator {
  border: 0;
  height: 1px;
  background: rgba(132, 157, 179, 0.12);
  margin: 35px 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: 400;
    letter-spacing: 0.5px;
}


ul li a{
  color: var(--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(--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);
}


.content p:not(:last-of-type) {
    margin-bottom: 15px;
}
