/* =========================================================
   RESOURCES PAGE
   Scoped content styles for resources.html.
   Resource guide/detail pages continue to use service-pages.css.
   ========================================================= */

body.resources-page{
  background: #000000;
  color: #ffffff;
}

body.resources-page .resources-main{
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ================================
   PROCESS PAGE WORKFLOW TITLE
   ================================ */

body.resources-page .cas-process-workflow-title{
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  font-family: "Red Hat Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.78rem, 2.25vw, 2.85rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

body.resources-page .cas-process-workflow-title + .row{
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

@media (max-width: 1199px){
  body.resources-page .cas-process-workflow-title{
    width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 521px){
  body.resources-page .cas-process-workflow-title{
    width: calc(100% - 36px);
    text-decoration-line: none;
    text-underline-offset: 0;
  }
}

/* ================================
   HERO
   ================================ */

body.resources-page .resources-hero{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  align-items: start;
  gap: 22px;
  min-height: 505px;
  padding: 46px 36px 50px;
  background:
    linear-gradient(
      180deg,
      #77776f 0%,
      #696961 29%,
      #3a3a39 61%,
      #080808 88%,
      #000000 100%
    );
}

body.resources-page .resources-hero__copy{
  position: relative;
  z-index: 2;
  max-width: 785px;
  padding-top: 34px;
  padding-left: 0;
}

body.resources-page .resources-hero h1{
  margin: 0;
  max-width: 785px;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-size: clamp(2.66rem, 3.57vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.052em;
}

body.resources-page .resources-hero__visual{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding-top: 0;
  padding-right: 58px;
  transform: translateX(0);
}

body.resources-page .resources-hero__image-frame{
  position: relative;
  z-index: 1;
  width: clamp(510px, 43vw, 690px);
  aspect-ratio: 1.48 / 1;
  border-radius: 22px;
}

body.resources-page .resources-hero__image-frame::after{
  content: "";
  position: absolute;
  right: -20px;
  bottom: -26px;
  z-index: -1;
  width: calc(100% - 58px);
  height: 378px;
  background: #ffffff;
}

body.resources-page .resources-hero__image-frame img{
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 0, 0, 0.96);
  border-radius: 22px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.42);
}

/* ================================
   RESOURCE CARDS
   ================================ */

body.resources-page .resources-cards-section{
  position: relative;
  z-index: 3;
  padding: 22px 0 clamp(72px, 7vw, 118px);
  background: #000000;
}

body.resources-page .resources-card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 22px;
  box-sizing: border-box;
  width: calc(100% - (var(--cas-si-hero-gutter) * 2));
  max-width: var(--cas-si-hero-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 32px;
  padding-left: 32px;
}

body.resources-page .resource-card{
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #0b0b0b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
}

body.resources-page .resource-card__image{
  width: 100%;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.resources-page .resource-card__figure{
  margin: 0;
}

body.resources-page .resource-card__image-file{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  object-position: center center;
}

body.resources-page .resource-card__body{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: clamp(19px, 2.05vw, 28px);
}

body.resources-page .resource-card__title{
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 1.28rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

body.resources-page .resource-card__text{
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Red Hat Text", "Red Hat Display", system-ui, sans-serif;
  font-size: 0.91rem;
  font-weight: 520;
  line-height: 1.48;
  letter-spacing: -0.012em;
}

body.resources-page .resource-card__link{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: #ffffff;
  font-family: "Red Hat Text", "Red Hat Display", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

body.resources-page .resource-card__link svg{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.resources-page .resource-card__link:hover,
body.resources-page .resource-card__link:focus-visible{
  color: #59E00B;
  text-decoration: none;
}

/* ================================
   STANDARDS COPY
   ================================ */

body.resources-page .resources-standards-copy{
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 96px 28px 86px;
  text-align: center;
}

body.resources-page .resources-standards-copy h2{
  max-width: 900px;
  margin: 0 auto 32px;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.022em;
}

body.resources-page .resources-standards-copy p{
  max-width: 1010px;
  margin: 0 auto 26px;
  color: #ffffff;
  font-family: "Red Hat Text", "Red Hat Display", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.004em;
}

body.resources-page .resources-standards-copy p:last-child{
  margin-bottom: 0;
}

/* ================================
   COMPLIANCE LOGO PANEL
   ================================ */

body.resources-page .resources-compliance-section{
  padding: 0 28px 58px;
  background: #000000;
}

body.resources-page .resources-compliance-panel{
  width: min(100%, 1230px);
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 62px 38px;
  background: #77776F;
  border-radius: 42px;
  border: 1px solid rgba(246, 242, 229, 0.699);
  box-shadow:
    0 0 24px rgba(94, 157, 166, 0.22);
  text-align: center;
}

body.resources-page .resources-compliance-panel h2{
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-size: clamp(2rem, 2.65vw, 3rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.038em;
}

body.resources-page .resources-compliance-panel p{
  max-width: 820px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-family: "Red Hat Text", "Red Hat Display", system-ui, sans-serif;
  font-size: clamp(1rem, 1.16vw, 1.12rem);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -0.014em;
}

body.resources-page .resources-logo-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  width: 100%;
  margin: 0 auto 24px;
}

body.resources-page .resources-logo{
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 82px;
  object-fit: contain;
}

body.resources-page .resources-logo--tcg{
  max-width: 190px;
  max-height: 74px;
}

body.resources-page .resources-logo--nist{
  max-width: 205px;
  max-height: 74px;
}

body.resources-page .resources-logo--adisa{
  max-width: 170px;
  max-height: 78px;
}

body.resources-page .resources-logo--ieee{
  max-width: 170px;
  max-height: 82px;
}

body.resources-page .resources-logo--bsi{
  max-width: 205px;
  max-height: 82px;
}

body.resources-page .resources-standards-link{
  display: inline-block;
  color: #ffffff;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.resources-page .resources-standards-link:hover,
body.resources-page .resources-standards-link:focus-visible{
  color: #ffffff;
  text-decoration-line: underline;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1040px){
  body.resources-page .resources-hero{
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px 24px 34px;
  }

  body.resources-page .resources-hero__copy{
    max-width: 760px;
    padding-top: 8px;
  }

  body.resources-page .resources-hero h1{
    max-width: 760px;
    font-size: clamp(2.1rem, 6vw, 3.15rem);
  }

  body.resources-page .resources-hero__image-frame{
    width: min(100%, 560px);
  }

  body.resources-page .resources-cards-section{
    padding-right: 0;
    padding-left: 0;
  }

  body.resources-page .resources-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: calc(100% - (var(--cas-si-hero-gutter) * 2));
    max-width: var(--cas-si-hero-max);
  }

  body.resources-page .resource-card__body{
    padding: 24px;
  }

  body.resources-page .resource-card__title{
    font-size: 1.15rem;
  }

  body.resources-page .resource-card__text{
    font-size: 0.9rem;
  }

  body.resources-page .resources-logo-row{
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 720px){
  body.resources-page .resources-hero{
    padding: 32px 18px 32px;
  }

  body.resources-page .resources-hero h1{
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  body.resources-page .resources-hero__image-frame{
    width: 100%;
  }

  body.resources-page .resources-hero__image-frame::after{
    right: -13px;
    bottom: -12px;
    width: calc(100% - 34px);
    height: 27px;
  }

  body.resources-page .resources-cards-section{
    padding: 18px 0 0;
  }

  body.resources-page .resources-card-grid{
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 36px);
  }

  body.resources-page .resource-card__body{
    padding: 20px 18px;
  }

  body.resources-page .resource-card__title{
    margin-bottom: 14px;
    font-size: 1.08rem;
    white-space: normal;
  }

  body.resources-page .resource-card__text{
    font-size: 0.9rem;
  }

  body.resources-page .resource-card__link{
    padding-top: 22px;
    font-size: 0.86rem;
  }

  body.resources-page .resources-standards-copy{
    padding: 58px 20px 52px;
  }

  body.resources-page .resources-compliance-section{
    padding: 0 18px 42px;
  }

  body.resources-page .resources-compliance-panel{
    padding: 34px 22px 26px;
    border-radius: 30px;
  }

  body.resources-page .resources-logo-row{
    gap: 28px;
  }

  body.resources-page .resources-logo,
  body.resources-page .resources-logo--tcg,
  body.resources-page .resources-logo--nist,
  body.resources-page .resources-logo--adisa,
  body.resources-page .resources-logo--ieee,
  body.resources-page .resources-logo--bsi{
    max-width: 185px;
    max-height: 76px;
  }
}

@media (max-width: 480px){
  body.resources-page .resources-hero{
    padding: 28px 14px 28px;
  }

  body.resources-page .resources-hero h1{
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  body.resources-page .resources-hero__image-frame::after{
    display: none;
  }

  body.resources-page .resources-card-grid{
    width: calc(100% - 28px);
    gap: 12px;
  }

  body.resources-page .resource-card__body{
    padding: 16px 14px;
  }

  body.resources-page .resource-card__title{
    font-size: 1rem;
    margin-bottom: 10px;
  }

  body.resources-page .resource-card__text{
    font-size: 0.86rem;
  }

  body.resources-page .resource-card__link{
    padding-top: 18px;
    font-size: 0.84rem;
  }

  body.resources-page .resources-standards-copy{
    padding: 44px 16px 40px;
  }

  body.resources-page .resources-standards-copy h2{
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  body.resources-page .resources-compliance-section{
    padding: 0 14px 36px;
  }

  body.resources-page .resources-compliance-panel{
    padding: 28px 16px 22px;
    border-radius: 22px;
  }

  body.resources-page .resources-compliance-panel h2{
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  body.resources-page .resources-logo-row{
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }

  body.resources-page .resources-logo,
  body.resources-page .resources-logo--tcg,
  body.resources-page .resources-logo--nist,
  body.resources-page .resources-logo--adisa,
  body.resources-page .resources-logo--ieee,
  body.resources-page .resources-logo--bsi{
    max-width: 120px;
    max-height: 56px;
  }
}

body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page .cas-blc-cta-group--pickup{
  box-sizing: border-box;
  background: #101010;
  border-top: 1px solid #7d7c7c;
  border-bottom: 1px solid #7d7c7c;
}

body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page .cas-blc-cta-group--pickup h2{
  color: #ffffff !important;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-weight: 900 !important;
  font-variation-settings: "wght" 800;
  -webkit-text-stroke: 0.25px #ffffff;
}

body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page .cas-blc-cta-group--pickup p{
  color: #ffffff !important;
  font-family: "Red Hat Display", "Red Hat Text", system-ui, sans-serif;
  font-weight: 700 !important;
  font-variation-settings: "wght" 600;
  -webkit-text-stroke: 0.10px #ffffff;
}

body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
.cas-blc-cta-group--pickup
.button.button--white{
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
.cas-blc-cta-group--pickup
.button.button--white:hover,
body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
.cas-blc-cta-group--pickup
.button.button--white:focus-visible{
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

body.resources-page .resources-footer-spacer{
  display: block;
  width: 100%;
  height: clamp(90px, 8vw, 150px);
  background: #000000;
}

/* =========================================================
   PROCESS PAGE RESPONSIVE WORKFLOW
   861px–1199px:
   - all teardrops share one centered vertical axis
   - alternating copy remains on the left and right

   522px–860px:
   - teardrop and copy sit beside one another
   - odd steps place the teardrop on the left
   - even steps place the teardrop on the right

   521px and below:
   - teardrops remain alternated left and right
   - all headings and paragraphs move below the teardrop
   ========================================================= */

/* ---------------------------------------------------------
   861px through 1199px
   Center every numbered teardrop on the same vertical axis.
   --------------------------------------------------------- */

@media (min-width: 861px) and (max-width: 1199px){
  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow{
    padding: 72px 0 104px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .cas-process-workflow-title
  + .row{
    margin-top: 0;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row{
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 58px;
    background: none;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 180px;
    margin-bottom: 36px !important;
    padding: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:last-child{
    margin-bottom: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n + 1){
    justify-content: flex-end;
    text-align: left;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n){
    justify-content: flex-start;
    text-align: right;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6{
    position: static;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 105px);
    width: calc(50% - 105px);
    max-width: none;
    min-height: 0;
    padding: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::before{
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 150px;
    height: 100%;
    min-height: 0;
    transform: translateX(-50%);
    background-position: center center !important;
    background-size: 150px auto;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::after{
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: calc(50% - 45px) !important;
    height: auto;
    transform: translateX(-50%);
    font-size: 20px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6::after{
    right: auto !important;
    left: calc(50% + 45px) !important;
  }
}

/* ---------------------------------------------------------
   522px through 860px
   Teardrop and copy remain beside each other.
   --------------------------------------------------------- */

@media (min-width: 522px) and (max-width: 860px){
  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow{
    padding: 64px 0 92px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .cas-process-workflow-title
  + .row{
    margin-top: 0;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row{
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-top: 48px;
    background: none;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12{
    display: flex;
    align-items: center;
    min-height: 170px;
    margin-bottom: 40px !important;
    padding: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:last-child{
    margin-bottom: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6{
    position: relative;
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 150px;
    padding: 24px 0 24px 184px !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6{
    padding: 24px 184px 24px 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n + 1){
    justify-content: flex-start;
    text-align: left;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n){
    justify-content: flex-start;
    text-align: right;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::before{
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 150px;
    height: 100%;
    min-height: 0;
    transform: none;
    background-position: center center !important;
    background-size: 150px auto;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6::before{
    right: 0 !important;
    left: auto !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::after{
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 18px !important;
    height: auto;
    transform: none;
    font-size: 20px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6::after{
    right: 18px !important;
    left: auto !important;
  }
}

/* ---------------------------------------------------------
   521px and below
   Teardrop first, full-width copy underneath.
   --------------------------------------------------------- */

@media (max-width: 521px){
  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow{
    padding: 56px 0 80px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .cas-process-workflow-title
  + .row{
    margin-top: 0;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row{
    box-sizing: border-box;
    width: calc(100% - 36px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-top: 42px;
    background: none;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12{
    display: block;
    min-height: 0;
    margin-bottom: 52px !important;
    padding: 0 !important;
    text-align: left;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:last-child{
    margin-bottom: 0 !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6,
  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6{
    position: relative;
    box-sizing: border-box;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 104px 0 0 !important;
    text-align: left;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::before{
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 0 !important;
    width: 150px;
    height: 78px;
    min-height: 0;
    transform: none;
    background-position: center center !important;
    background-size: 150px auto;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6::before{
    right: 0 !important;
    left: auto !important;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12
  > .col-xl-6::after{
    top: 0 !important;
    right: auto !important;
    bottom: auto !important;
    left: 18px !important;
    height: 78px;
    transform: none;
    font-size: 20px;
  }

  body.service-detail-page.cas-resource-blancco-page.pickup-checklist-page
  .our-workflow
  .row
  > .col-md-12:nth-child(2n)
  > .col-xl-6::after{
    right: 18px !important;
    left: auto !important;
  }
}

/* Existing desktop scaling remains unchanged. */

@media (min-width: 1200px){
  body.resources-page .cas-si-hero__inner,
  body.resources-page .resources-card-grid,
  body.resources-page .our-workflow .cas-process-workflow-title,
  body.resources-page .our-workflow .row,
  body.resources-page .cas-additional-details-row,
  body.resources-page .cas-process-followup-copy,
  body.resources-page .cas-blc-cta-group--pickup > .wp-block-group__inner-container{
    zoom: 0.85;
  }
}