    /* ── HOME LAYOUT ── */
    .home-wrap {
      max-width: 48%;
      padding: 3rem 3rem 2rem;
    }

    .home-title {
      font-family: system-ui, sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 1.2rem;
    }

    .home-divider {
      height: 2px;
      background: linear-gradient(to right, #1a6fc4, #00c6ff, #1a6fc4);
      box-shadow: 0 0 10px #00c6ff88, 0 0 24px #1a6fc455;
      border: none;
      border-radius: 2px;
      margin-bottom: 2rem;
    }

    .home-divider.bottom {
      margin-top: 0.2rem;
      margin-bottom: 2.5rem;
    }

    .home-bottom {
      position: fixed;
      bottom: 0.2rem;
      left: 0;
      width: 48%;
      padding: 0 3rem 2rem;
    }

    .home-text {
      font-family: system-ui, sans-serif;
      font-size: 1rem;
      color: #c8d8e8;
      line-height: 1.85;
    }

    .home-text p {
      margin: 0 0 1.4rem;
    }

    .home-text p:last-child {
      margin-bottom: 0;
    }

    /* ── NEWS ── */
    .news-item {
      margin-bottom: 3rem;
    }

    .news-item-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #fff;
      margin: 0 0 0.25rem;
    }

    .news-item-date {
      font-size: 0.9rem;
      color: #5ab0f7;
      margin: 0 0 1.25rem;
    }

    /* ── SOCIAL BAR ── */
    .social-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0 0;
    }

    .social-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

    .social-btn:hover {
      transform: scale(1.2);
    }

    .social-btn img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      display: block;
    }

    .social-btn span {
      font-family: system-ui, sans-serif;
      font-size: 12px;
      color: #8a9bb0;
    }

    /* ── FLIP CARD ── */
    .flip-wrap {
      position: fixed;
      right: 4vw;
      top: calc(60px + 4vw);
      bottom: 4vw;
      aspect-ratio: 1;
      height: calc(100vh - 60px - 8vw);
      perspective: 1000px;
      cursor: pointer;
    }

    .flip-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
    }

    .flip-wrap:hover .flip-inner {
      transform: rotateY(180deg);
    }

    .flip-front,
    .flip-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 50%;
      overflow: hidden;
    }

    .flip-front {
      box-shadow: 0 0 40px #ffffff33, 0 0 80px #ffffff18;
    }

    .flip-back {
      transform: rotateY(180deg);
      box-shadow: 0 0 40px #dbdbdb55, 0 0 80px #a7a7a722;
    }

    .flip-front img,
    .flip-back img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .flip-wrap {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        height: 280px !important;
        width: 280px !important;
        margin: 1.5rem auto;
        display: block;
      }

      .home-wrap {
        max-width: 100%;
        padding: 1.5rem 1.5rem 1rem;
      }

      .home-bottom {
        position: relative !important;
        bottom: auto !important;
        width: 85% !important;
        margin: 0 auto;
        left: 0;
        right: 0;
        padding: 0 1.5rem 2rem;
      }

      .social-bar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem 0.25rem;
      }

      .social-btn {
        width: 25%;
      }

      .social-btn img {
        width: 36px;
        height: 36px;
      }

      .social-btn span {
        font-size: 10px;
      }
    }