/* Shared Elementor component styles (were inline <style>, identical
   across several pages). Loaded site-wide; each rule is scoped to its own
   component class. */

.kp-attention-block * {
    box-sizing: border-box;
  }

  .kp-attention-block {
    width: 100%;
    margin: 32px 0;
    padding: 26px 28px;
    border-radius: 16px;
    background:
      linear-gradient(135deg, var(--accent-deep, #C9A362) 0%, var(--accent-hi, #EFD6A6) 100%);
    border: 2px solid #ffffff;
    box-shadow:
      0 0 0 4px rgba(227, 192, 131, 0.30),
      0 18px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    color: #000000;
    text-align: center;
  }

  .kp-attention-block::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.22) 0,
        rgba(255, 255, 255, 0.22) 10px,
        transparent 10px,
        transparent 22px
      );
    opacity: 0.28;
    pointer-events: none;
  }

  .kp-attention-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .kp-attention-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #000000;
    color: #E3C083;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 900;
    flex-shrink: 0;
  }

  .kp-attention-text {
    margin: 0;
    font-size: clamp(1.35rem, 3.2vw, 2.25rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
  }

  @media (max-width: 560px) {
    .kp-attention-block {
      margin: 24px 0;
      padding: 22px 18px;
      border-radius: 14px;
    }

    .kp-attention-inner {
      gap: 12px;
    }

    .kp-attention-icon {
      width: 38px;
      height: 38px;
      font-size: 1.25rem;
    }

    .kp-attention-text {
      font-size: 1.25rem;
      letter-spacing: 0.025em;
    }
  }
