
  .imf-scenes {
    margin: 2rem 0;
    font-family: 'Inter', -apple-system, sans-serif;
  }
  .imf-scenes__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F2B42;
    margin: 0 0 0.25rem 0;
  }
  .imf-scenes__sub {
    font-size: 0.9rem;
    color: #6B6B6B;
    margin-bottom: 1.25rem;
  }
  .imf-scenes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
  }
  .imf-scene {
    background: #fff;
    border: 1px solid #E2DDD6;
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  .imf-scene:hover {
    box-shadow: 0 4px 16px rgba(15,43,66,0.06);
  }
  .imf-scene::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
  }
  .imf-scene--h::before { background: #1A5C7A; }
  .imf-scene--v::before { background: #2D7A5A; }
  .imf-scene--c::before { background: #B8651F; }
  .imf-scene--r::before { background: #5B6C8A; }

  .imf-scene__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
  }
  .imf-scene__what {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0F2B42;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  .imf-scene__models {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0F2B42;
  }
