/* ==========================================================================
   KOBIL — Technology / Application Security — Section: Protection
   Figma 6087:54122 ("Protection Across the Full Attack Surface") with the
   FeatureTabs instance 6087:54124.

   Same two-column pattern as the steps section, but five rows instead of
   three and no lead paragraph: title, then 578px rows on the left beside a
   527x428 visual on the right (Figma puts the visual at x=753, so the gap is
   175px). Rows are 12px apart, each with a bottom rule and a 24px icon.
   ========================================================================== */

.sec-application-security-protection {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  padding: 40px;
}

.as-protection__title {
  max-width: 768px;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
}

/* ---- Rows + visual ---- */

.as-protection__body {
  display: flex;
  align-items: center;
  gap: 175px;
  width: 100%;
}

.as-protection__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 578px;
  min-width: 0;
  max-width: 578px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.as-protection__row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-40);
}

.as-protection__row-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.as-protection__row-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--navy);
}

/* First row is the highlighted one in Figma (Primary/Dark Blue) */
.as-protection__row--active .as-protection__row-title {
  color: #1046cf;
}

.as-protection__row-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--navy-70);
}

.as-protection__row-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.as-protection__visual {
  flex: 0 0 527px;
  width: 527px;
  height: 428px;
  margin: 0;
}

.as-protection__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
  .as-protection__body {
    gap: 48px;
  }

  .as-protection__list {
    flex: 1 1 auto;
    max-width: none;
  }

  .as-protection__visual {
    flex: 0 1 420px;
    width: auto;
    max-width: 420px;
    height: auto;
  }

  .as-protection__title {
    font-size: 44px;
  }
}

@media (max-width: 900px) {
  .as-protection__body {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .as-protection__visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sec-application-security-protection {
    padding: 24px;
    gap: 32px;
  }

  .as-protection__title {
    font-size: 34px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .sec-application-security-protection {
    padding: 20px;
  }

  .as-protection__title {
    font-size: 30px;
    line-height: 1.2;
  }
}
