/* Extracted from vps-servers.html inline <style> block 01. */
  .webystrata_vps_belowhero_section,
  .webystrata_vps_belowhero_section * {
    box-sizing: border-box;
  }

  .webystrata_vps_belowhero_section {
    width: 100%;
    position: relative;
    background: #ffffff;
    padding: 0 20px 72px;
    font-family: "Inter", "DM Sans", Arial, sans-serif;
  }

  .webystrata_vps_belowhero_container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .webystrata_vps_belowhero_card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 178px;
    padding: 28px 26px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e3edf9;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .webystrata_vps_belowhero_card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -95px;
    right: -95px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(7, 91, 216, 0.16), rgba(7, 91, 216, 0));
    pointer-events: none;
    transition: transform 0.28s ease;
  }

  .webystrata_vps_belowhero_card:hover {
    transform: translateY(-6px);
    border-color: #c4dcff;
    box-shadow: 0 26px 64px rgba(15, 23, 42, 0.095);
  }

  .webystrata_vps_belowhero_card:hover::before {
    transform: scale(1.15);
  }

  .webystrata_vps_belowhero_icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b72ff 0%, #004fc9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(7, 91, 216, 0.22);
  }

  .webystrata_vps_belowhero_icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .webystrata_vps_belowhero_content {
    position: relative;
    z-index: 2;
  }

  .webystrata_vps_belowhero_content h3 {
    margin: 0 0 9px;
    color: #101828;
    font-size: 21px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.7px;
  }

  .webystrata_vps_belowhero_content p {
    margin: 0;
    color: #5f6c80;
    font-size: 15.5px;
    line-height: 1.68;
    font-weight: 500;
    letter-spacing: -0.16px;
  }

  @media (max-width: 1100px) {
    .webystrata_vps_belowhero_container {
      grid-template-columns: 1fr;
      max-width: 760px;
    }

    .webystrata_vps_belowhero_card {
      min-height: auto;
    }
  }

  @media (max-width: 640px) {
    .webystrata_vps_belowhero_section {
      padding: 0 16px 54px;
    }

    .webystrata_vps_belowhero_container {
      gap: 16px;
    }

    .webystrata_vps_belowhero_card {
      padding: 24px 22px;
      border-radius: 22px;
      gap: 16px;
    }

    .webystrata_vps_belowhero_icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      border-radius: 16px;
    }

    .webystrata_vps_belowhero_icon svg {
      width: 25px;
      height: 25px;
    }

    .webystrata_vps_belowhero_content h3 {
      font-size: 20px;
    }

    .webystrata_vps_belowhero_content p {
      font-size: 15px;
      line-height: 1.62;
    }
  }
