/* index sablonundan tasindi (FOUC duzeltmesi). Kaynak: index.php */

.vote-banner-home {
       display: flex;
       align-items: center;
       gap: 14px;
       max-width: var(--container-max, 1100px);
       margin: 16px auto;
       padding: 14px 18px;
       border-radius: var(--radius-lg, 12px);
       background: linear-gradient(135deg, rgba(255,109,0,.14), rgba(123,108,255,.12));
       border: 1px solid rgba(255,109,0,.3);
       text-decoration: none;
       transition: border-color .2s, transform .2s;
   }
   .vote-banner-home:hover {
       border-color: var(--color-primary, #ff6d00);
       transform: translateY(-1px);
       text-decoration: none;
   }
   .vote-banner-home-icon {
       flex-shrink: 0;
       width: 40px;
       height: 40px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.1rem;
       color: #fff;
       background: linear-gradient(135deg, #ff9f43, #7b6cff);
   }
   .vote-banner-home-text {
       flex: 1;
       min-width: 0;
       display: flex;
       flex-direction: column;
       gap: 2px;
   }
   .vote-banner-home-text strong {
       font-size: 0.95rem;
       color: var(--color-text-primary);
   }
   .vote-banner-home-text span {
       font-size: 0.82rem;
       color: var(--color-text-muted);
       line-height: 1.4;
   }
   .vote-banner-home-cta {
       flex-shrink: 0;
       display: inline-flex;
       align-items: center;
       gap: 6px;
       padding: 8px 16px;
       border-radius: 999px;
       background: var(--color-primary, #ff6d00);
       color: #fff;
       font-size: 0.82rem;
       font-weight: 700;
       white-space: nowrap;
   }
   @media (max-width: 600px) {
       .vote-banner-home {
           flex-wrap: wrap;
           padding: 12px 14px;
       }
       .vote-banner-home-text {
           order: 2;
           width: 100%;
       }
       .vote-banner-home-icon {
           order: 1;
       }
       .vote-banner-home-cta {
           order: 3;
           width: 100%;
           justify-content: center;
       }
   }
