/* ================================================================
   TerraFloor — cta-banner.css
   ================================================================ */

   .cta-banner { padding-block: 0; }

   .cta-banner__inner {
       border-radius: 40px;
       padding: 50px 100px;
       display: flex;
       align-items: center;
       justify-content: center;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       min-height: 160px;
   }
   
   .cta-banner__btn {
       background: var(--color-brown);
       color: var(--color-white);
       height: 55px;
       padding: 15px 30px;
       font-size: 21px;
       font-weight: 600;
   }
   
   @media (max-width: 768px) {
       .cta-banner__inner { padding: 40px 24px; border-radius: 24px; }
       .cta-banner__btn   { font-size: 16px; width: 100%; justify-content: center; }
   }