/* ============================================
       NOTICE
       ============================================ */
    .notice {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      margin-top: 16px;
      padding: 13px 15px;
      border-radius: 14px;
      background: #ff000059;
      border: 1px solid #ff0000;
      position: relative;
      z-index: 1;
      transition: border-color .25s ease, background .25s ease;
    }

    .notice:hover {
      border-color: rgba(255,95,95,.45);
      background: rgba(255,45,45,.10);
    }

    .notice-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: linear-gradient(to bottom, #ff4b4b, #6b0000);
      border-top: 1px solid rgba(255,255,255,.45);
      border-bottom: 2px solid #3a0000;
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 0 12px rgba(255,45,45,.45);
    }

    .notice strong {
      display: block;
      font-size: 12px;
      margin-bottom: 2px;
      color: #fff;
    }

    .notice p {
      color: #c9a3a3;
      font-size: 11px;
      line-height: 1.5;
    }

    