/* ============================================================================
   Sema PTA landing — 09 — «Названо в честь Сёмы» (round cat photo)
   ----------------------------------------------------------------------------
   To edit this section, open css/story-cat.css. All rules are grouped here.
   ============================================================================ */

/* ============ Story (about the cat) — one card, cat peeks from behind ============ */

.story-wrap {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding-top: 40px;
  }

/* Cat photo — back to a circular avatar (round crop) with orange ring */

.story-catwrap {
    width: 240px;
    height: 240px;
    margin: 0 auto 32px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 0 0 4px rgba(255,138,76,0.35),
      0 0 0 10px rgba(255,138,76,0.10),
      0 16px 40px rgba(0,0,0,0.5);
  }

.story-catwrap::before {
    /* soft outer glow */
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255,138,76,0.35), transparent 60%);
    filter: blur(24px);
    pointer-events: none;
    z-index: -1;
  }

.story-catwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* crop into the cat's face — tweak object-position if the face is off-center */
    object-position: center 35%;
    display: block;
    filter: contrast(1.05) saturate(1.08);
  }

.story-card {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
  }

.story-card .section-eyebrow { margin: 0 auto 20px; }

.story-card h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
  }

.story-card p {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 auto 16px;
    max-width: 620px;
  }

.story-card p strong { color: var(--text); font-weight: 500; }

.story-card .story-sign {
    color: var(--text-mute);
    font-size: 13px;
    margin-top: 28px;
    display: inline-flex; align-items: center; gap: 10px;
    justify-content: center;
  }

.story-card .story-sign::before {
    content: "";
    width: 24px; height: 1px; background: var(--border-strong);
  }
