
  /* LANDING PAGE */
  /* */



  .page-template-template-landingpage #static_header_banner,
  .page-template-template-landingpage #masthead,
  .page-template-template-landingpage #navbar {
      display: none !important;
  }


  .page-template-template-landingpage #content {
    padding-top: 0px;
    padding-bottom: 0px !important;
  }

  @media (min-width: 576px) {
	.page-template-template-landingpage .container-sm,  .page-template-template-landingpage  .container {
	  max-width: 540px;
	}
  }
  @media (min-width: 768px) {
	.page-template-template-landingpage .container-md,  .page-template-template-landingpage  .container-sm,  .page-template-template-landingpage  .container {
	  max-width: 720px;
	}
  }
  @media (min-width: 992px) {
	.page-template-template-landingpage .container-lg,  .page-template-template-landingpage  .container-md, .page-template-template-landingpage   .container-sm,   .page-template-template-landingpage .container {
	  max-width: 1170px;
	}
  }
  @media (min-width: 1200px) {
	.page-template-template-landingpage .container-xl,  .page-template-template-landingpage  .container-lg,  .page-template-template-landingpage  .container-md,  .page-template-template-landingpage  .container-sm,  .page-template-template-landingpage  .container {
	  max-width: 1320px;
	}
  }

  @media (min-width: 1400px) {
	.page-template-template-landingpage .container-xxl,  .page-template-template-landingpage  .container-xl,  .page-template-template-landingpage  .container-lg, .page-template-template-landingpage   .container-md,  .page-template-template-landingpage  .container-sm, .page-template-template-landingpage  .container {
	  max-width: 1800px;
	}
  }







  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background-color: #000;
  }
  
  .text-column {
    color: var(--landing-text-color);
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .image-column {
    background-image: url('images/landing-background-01.png');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    max-height: 1086px;
  }
  
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  
    .image-column {
      height: 300px;
      order: 2;
    }
  
    .text-column {
      order: 1;
      padding: 50px 20px;
    }
  }
  
  p, .p {
    color: var(--primary-color) !important;
  }
  
  h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  h2, .h2 {
    font-size: 5.65rem !important;
    line-height: 1.15em !important;
    color: var(--primary-color) !important;
    font-family: var(--heading-font2) !important;
    text-align: center !important;
  }
  
  h2::after {
    content: "";
    display: block;
    height: 46px;
    background-image: url('images/landing-header-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 38px;
    vertical-align: middle;
  }
  
  h3, .h3 {
    font-size: 1.65rem !important;
    line-height: 2.2rem !important;
    color: var(--landing-text-color) !important;
    text-align: center !important;
  }
  
  h4, .h4 {
    font-size: 1.65rem !important;
    line-height: 2.2rem !important;
    color: var(--landing-text-color) !important;
  }
  
  .split-hero {
    border-bottom: 1px solid var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    background-image: none;
    min-height: 100vh;
  }
  
  .split-hero h4::after {
    content: "";
    display: block;
    width: 100px;
    height: 15px;
    background-image: url('images/landing-header-little-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    margin-top: 18px;
    vertical-align: middle;
  }
  
  .hero-center-box h3 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-size: 1.9rem !important;
    line-height: 2.4rem !important;
  }
  
  .hero-center-box h3::after {
    content: "";
    display: block;
    height: 43px;
    background-image: url('images/landing-header-line-02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 18px;
    vertical-align: middle;
  }
  
  .hero-text {
    width: 100%;
    color: var(--landing-text-color);
    padding: 10% 5%;
  }
  
  .hero-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 280px;
    background-image: linear-gradient(to bottom, #000000 0%, transparent 25%), url('images/landing-background-01.png');
    background-size: 135% auto;
    background-position: right center;
    background-repeat: no-repeat;
  }
  
  @media (min-width: 1024px) {
    .split-hero {
      flex-direction: row;
      background-image: url('images/landing-background-01.png');
      background-size: cover;
      background-position: center right;
    }
  
    .hero-text {
      width: 60%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5% 8%;
      text-align: left;
    }
  
    .hero-image {
      width: 40%;
      height: auto;
      aspect-ratio: auto;
      background-image: none;
    }
  }
  
  .centered-hero-section {
    border-bottom: 1px solid var(--primary-color) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
    background-image: url('images/landing-background-02.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
  }
  
  .hero-center-box {
    text-align: center;
    color: var(--landing-text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero-center-box h2 {
    font-size: 2.5rem !important;
    margin-bottom: 20px;
  }
  
  @media (max-width: 1024px) {
    .centered-hero-section {
      background-position: center bottom;
      padding: 20px;
    }
  
    .hero-center-box h2 {
      font-size: 2rem !important;
    }
  }
  
  .split-hero-02 {
    border-bottom: 1px solid var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    background-image: none;
    min-height: 100vh;
  }
  
  .hero-text-02 {
    width: 100%;
    color: var(--landing-text-color);
    padding: 10% 5%;
  }
  
  .hero-image-02 {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 280px;
    background-image: linear-gradient(to bottom, #000000 0%, transparent 25%), url('images/landing-background-03.png');
    background-size: 135% auto;
    background-position: right center;
    background-repeat: no-repeat;
  }
  
  @media (min-width: 1024px) {
    .split-hero-02 {
      flex-direction: row;
      background-image: url('images/landing-background-03.png');
      background-size: cover;
      background-position: center right;
    }
  
    .hero-text-02 {
      width: 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5% 8%;
      text-align: left;
    }
  
    .hero-image-02 {
      width: 55%;
      height: auto;
      aspect-ratio: auto;
      background-image: none;
    }
  }
  
  .split-hero-02 h4 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-size: 2.9rem !important;
    line-height: 1.2em !important;
    text-align: center;
  }
  
  .split-hero-02 h4::before {
    content: "";
    display: block;
    height: 40px;
    background-image: url('images/landing-header-line-03.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 18px;
    vertical-align: middle;
  }
  
  .split-hero-02 p {
    color: var(--landing-text-color) !important;
  }
  
  .split-hero-02 p.cross::after {
    content: "";
    display: block;
    height: 36px;
    background-image: url('images/landing-little-cross.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    margin-bottom: -20px;
    vertical-align: center;
  }
  
  .split-hero-02 p b {
    color: var(--primary-color) !important;
    font-weight: 700;
  }
  
  .centered-hero-section-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
    background-image: url('images/landing-background-faq.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
  }
  
  .hero-center-box-02 {
    text-align: center;
    max-width: 440px;
    width: 100%;
    color: var(--landing-text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .hero-center-box-02 h2 {
    font-size: 2.5rem !important;
    margin-bottom: 20px;
  }
  
  @media (max-width: 1024px) {
    .centered-hero-section-02 {
      background-position: center bottom;
      padding: 20px;
    }
  
    .hero-center-box-02 h2 {
      font-size: 2rem !important;
    }
  }
  
  .hero-center-box-02 h3 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-size: 3.9rem !important;
    line-height: 1.15em !important;
    text-transform: uppercase;
  }
  
  .hero-center-box-02 h3::after {
    content: "";
    display: block;
    height: 19px;
    background-image: url('images/landing-header-line-04-bottom.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 18px;
    vertical-align: middle;
  }
  
  .hero-center-box-02 h3::before {
    content: "";
    display: block;
    height: 49px;
    background-image: url('images/landing-header-line-04.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
    vertical-align: middle;
  }
  
  .hero-center-box-02 p, .ewd-ufaq-faq-body p {
    color: var(--landing-text-color) !important;
  }
  
  div.ewd-ufaq-faq-title div.ewd-ufaq-post-margin-symbol {
    margin-top: 15px !important;
  }
  
  .graphic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 75px;
    text-decoration: none;
    background-image: url('images/button-background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.2s ease,
                box-shadow 0.2s ease;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none !important;
    box-sizing: border-box;
  }
  
  .btn-text {
    color: var(--landing-text-color) !important;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    padding: 0 12px;
    text-align: center;
    line-height: 1.1;
    text-decoration: none;
  }
  
  .graphic-btn:hover {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.15);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }
  
  .graphic-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  
  .split-hero-03 {
    border-bottom: 1px solid var(--primary-color) !important;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    min-height: 100vh;
  }
  
  .hero-text-03 {
    width: 100%;
    color: #ffffff;
    padding: 10% 5%;
    text-align: center;
    box-sizing: border-box;
  }
  
  .hero-image-03 {
    width: 100%;
    aspect-ratio: 828 / 939;
    height: auto;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, #000000 100%), url('images/paul-sado.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #000000;
  }
  
  /* Standardowy układ desktopowy (1024px w górę) */
  @media (min-width: 1024px) {
    .split-hero-03 {
      flex-direction: row-reverse;
      min-height: 100vh;
    }
  
    .hero-text-03 {
      width: 55%;
      padding: 5% 5%;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  
    .hero-image-03 {
      width: 45%;
      height: auto;
      aspect-ratio: auto;
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, #000000 100%), url('images/paul-sado.png');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-color: #000000;
    }
  }
  
  /* Wyjątek TYLKO dla przedziału 1024px - 1299px */
  @media (min-width: 1024px) and (max-width: 1299.98px) {
    .hero-image-03 {
      background-size: 100% auto;
    }
  }
  
  .split-hero-03 h3 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-size: 3.9rem !important;
    line-height: 1.15em !important;
    text-transform: uppercase;
  }
  
  .split-hero-03 h3::after {
    content: "";
    display: block;
    height: 19px;
    background-image: url('images/landing-header-line-04-bottom.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 18px;
    vertical-align: middle;
  }
  
  .split-hero-03 p {
    line-height: 1.3em;
    color: var(--landing-text-color) !important;
    margin-bottom: 0.5em;
  }
  
  .split-hero-03 p b {
    font-weight: 700;
    color: var(--primary-color) !important;
  }
  
  .split-hero-03 h4 {
    color: var(--landing-text-color) !important;
    line-height: 1.6rem !important;
    text-transform: uppercase;
  }
  
  .split-hero-03 h5 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font);
    font-size: 1.2rem !important;
    line-height: 1.5rem !important;
    text-transform: uppercase;
    text-align: center;
  }
  
  .split-hero-03 h5::after {
    content: "";
    display: block;
    height: 19px;
    background-image: url('images/autor-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px;
    vertical-align: middle;
  }
  
  .double-bg-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--primary-color) !important;
  }
  
  .double-bg-box .box-top-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1120 / 630;
    background-image: url('images/landing-mapa.png');
    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;
  }
  
  .double-bg-box .box-bottom-content {
    width: 100%;
    color: #ffffff;
    padding: 40px 25px;
    box-sizing: border-box;
    background-image: 
      radial-gradient(circle at center, transparent 90%, rgba(0, 0, 0, 0.75) 100%),
      url('images/landing-background-04.png');
    background-repeat: no-repeat, repeat-y;
    background-size: 100% 100%, 100% auto;
    background-position: center top, center top;
    border-top: 1px solid var(--primary-color) !important;
    border-bottom: 1px solid var(--primary-color) !important;
  }
  
  @media (min-width: 1024px) {
    .double-bg-box .box-top-image {
      height: auto;
      background-size: cover;
      background-position: center top;
    }
  
    .double-bg-box .box-bottom-content {
      padding: 60px 10%;
    }
  }
  
  .double-bg-box .images-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
    width: 100%;
  }
  
  .double-bg-box .images-row img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  
  @media (min-width: 768px) {
    .double-bg-box .images-row {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .double-bg-box .images-row img {
      flex: 1;
      max-width: calc(33.333% - 14px);
    }
  }
  
  .double-bg-box h2 {
    color: var(--landing-dark-text-color) !important;
    font-size: 4rem !important;
    line-height: 1.15em !important;
    text-transform: uppercase;
    font-family: var(--heading-font) !important;
    text-align: center !important;
  }
  
  .double-bg-box p {
    text-align: center;
    color: var(--landing-dark-text-color) !important;
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.2em;
  }
  
  .double-bg-box p b {
    font-weight: 700;
  }
  
  .double-bg-box p.quote {
    font-style: italic;
    font-size: 1.3em;
    line-height: 1.3em;
  }
  
  .double-bg-box h2::after {
    content: "";
    display: block;
    height: 46px;
    background-image: url('images/landing-header-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 38px;
    vertical-align: middle;
  }
  
  .double-bg-box p.last::after {
    content: "";
    display: block;
    height: 46px;
    background-image: url('images/landing-header-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 38px;
    vertical-align: middle;
  }
  
  .double-bg-box p.quote::before {
    content: "";
    display: block;
    height: 46px;
    background-image: url('images/landing-header-line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 38px;
    vertical-align: middle;
  }
  
  .hero-split-04 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .hero-split-04 .box-top-04 {
    width: 100%;
    aspect-ratio: 1535 / 842;
    min-height: 450px;
    background-color: #000000;
    background-image: url('images/landing-background-05.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
  }
  
  .hero-split-04 .box-top-content {
    width: 100%;
    max-width: 1012px;
    text-align: center;
    color: #ffffff;
    padding-top: 90px;
  }
  
  .hero-split-04 .box-top-content h2 {
    font-size: 2rem !important;
    margin-bottom: 15px;
  }
  
  @media (max-width: 1760px) {
    .hero-split-04 .box-top-04 {
      aspect-ratio: auto;
      height: auto;
      background-size: 100% auto;
      background-position: center top;
      padding-bottom: 60px;
    }
  }
  
  @media (max-width: 992px) {
    .hero-split-04 .box-top-04 {
      background-position: right top;
      min-height: 420px;
      padding: 60px 20px 40px 20px;
    }
  }
  
  .hero-split-04 .box-bottom-04 {
    width: 100%;
    aspect-ratio: 1120 / 131;
    background-image: url('images/mini-mapa-05.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 5%;
    box-sizing: border-box;
  }
  
  .hero-split-04 .box-bottom-content {
    width: 100%;
    text-align: right;
    color: #ffffff;
  }
  
  @media (min-width: 1400px) {
    .hero-split-04 .box-bottom-04 {
      background-size: 100% 100% !important;
      background-position: center center;
    }
  
    .hero-split-04 .box-bottom-content {
      max-width: 70%;
    }
  }
  
  @media (max-width: 1399px) {
    .hero-split-04 .box-bottom-content {
      max-width: 100%;
    }
  }
  
  @media (max-width: 1024px) {
    .hero-split-04 .box-bottom-04 {
      aspect-ratio: auto;
      min-height: 110px;
      background-size: cover;
      background-position: center center;
      padding: 15px 20px;
    }
  
    .hero-split-04 .box-top-content h2 {
      font-size: 1.6rem !important;
    }
  }
  
  .cards-grid-04 {
    display: grid;
    width: 100%;
    margin: 35px 0;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  
  .cards-grid-04 .card-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cards-grid-04 .card-item img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
  }
  
  @media (max-width: 1023px) {
    .cards-grid-04 {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
  
  @media (max-width: 767px) {
    .cards-grid-04 {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  }
  
  .hero-split-04 h2 {
    color: var(--primary-color) !important;
    font-family: var(--heading-font) !important;
    font-size: 3.9rem !important;
    line-height: 1.15em !important;
    text-transform: uppercase;
  }
  
  @media (max-width: 762px) {
    h2, .h2 {
      font-size: 3.2rem !important;
    }
  
    .hero-center-box-02 h3,
    .split-hero-03 h3,
    .hero-split-04 h2 {
      font-size: 2.8rem !important;
    }
  
    .double-bg-box h2 {
      font-size: 2.8rem !important;
    }
  
    .split-hero-02 h4 {
      font-size: 2.2rem !important;
    }
  
    h3, .h3, h4, .h4 {
      font-size: 1.4rem !important;
    }
  
    .btn-text {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 576px) {
    h2, .h2 {
      font-size: 2.6rem !important;
    }
  
    .hero-center-box-02 h3,
    .split-hero-03 h3,
    .hero-split-04 h2,
    .double-bg-box h2 {
      font-size: 2.2rem !important;
    }
  
    .split-hero-02 h4 {
      font-size: 1.8rem !important;
    }
  
    h2::after,
    .double-bg-box h2::after,
    .double-bg-box p.last::after,
    .double-bg-box p.quote::before {
      height: 30px;
      margin-top: 20px;
    }
  
    .hero-center-box-02 h3::before {
      height: 32px;
    }
  
    .hero-center-box-02 h3::after,
    .split-hero-03 h3::after,
    .split-hero-03 h5::after {
      height: 14px;
    }
  }
  
  @media (max-width: 450px) {
    h2, .h2 {
      font-size: 2.1rem !important;
    }
  
    .hero-center-box-02 h3,
    .split-hero-03 h3,
    .hero-split-04 h2,
    .double-bg-box h2 {
      font-size: 1.75rem !important;
    }
  
    .split-hero-02 h4 {
      font-size: 1.5rem !important;
    }
  
    h3, .h3, h4, .h4 {
      font-size: 1.2rem !important;
    }
  
    .graphic-btn {
      height: 60px;
    }
  
    .btn-text {
      font-size: 1.1rem;
    }
  
    .hero-split-04 .box-top-content {
      padding-top: 40px;
    }
  }
  
  
  
  
  

  
  /* ==========================================
   SEKCJA OPINII (REVIEWS SECTION)
   ========================================== */

.reviews-section {
  width: 100%;
  min-height: 100vh;
  padding: 80px 20px;
  box-sizing: border-box;
  background-color: #000000;
  background-image: url('images/landing-background-reviews.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--primary-color) !important;
}

/* Kotwiczenie do prawej z zoomem na mniejszych ekranach */
@media (max-width: 1023px) {
  .reviews-section {
    background-size: 135% auto;
    background-position: right center;
    padding: 60px 15px;
  }
}

.reviews-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Nagłówek i opis u góry */
.reviews-header {
  text-align: center;
  margin-bottom: 45px;
  max-width: 900px;
}

.reviews-header h2 {
  font-size: 3.8rem !important;
  color: var(--primary-color) !important;
  font-family: var(--heading-font2) !important;
  line-height: 1.15em !important;
  margin-bottom: 15px;
}

.reviews-header h2::after {
  content: "";
  display: block;
  height: 35px;
  background-image: url('images/landing-header-line.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 20px;
}

.reviews-subtitle {
  font-size: 1.4rem;
  color: var(--landing-text-color) !important;
  margin-top: 10px;
}

/* Siatka kart (Grid) */
.reviews-grid {
  display: grid;
  width: 100%;
  gap: 30px;
  justify-items: center;
  /* Domyślnie 1 kolumna dla < 1200px */
  grid-template-columns: 1fr;
}

/* Układ 2x2 od 1200px w górę */
@media (min-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Styl pojedynczej karty z ramką */
.review-card {
  width: 100%;
  max-width: 561px;
  aspect-ratio: 561 / 391; /* Zachowuje proporcje 561x391px */
  background-image: url('images/review-card-frame.png'); /* Osobne tło ramki */
  background-size: 100% 100%; /* Dopasowuje tło idealnie do ramki */
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  padding: 8% 9%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Zawartość wyśrodkowana w środku środka */
.card-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  margin-top: 10px;
}

.quote-icon {
  font-size: 2.2rem;
  color: #b83a21; /* Ozdobny czerwono-miedziany akcent dla cudzysłowu */
  line-height: 1;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.quote-text {
  color: var(--landing-text-color) !important;
  font-size: 0.95em;
  line-height: 1.2em;
  margin-bottom: 12px !important;
  display: -webkit-box;
  overflow: hidden;
}

/* Linia pod cytatem i dane autora */
.author-box {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.25); /* Ozdobna kreseczka nad autorem */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-box h3 {
  color: var(--primary-color) !important;
  font-family: var(--heading-font2) !important;
  font-size: 2.1rem !important;
  line-height: 1.1em !important;
  margin: 0 !important;
  text-align: center !important;
}

.author-box span {
  color: var(--landing-text-color);
  font-size: 0.84em;
  opacity: 0.85;
  margin-top: 2px;
}

/* Skalowanie na bardzo małych ekranach (telefony) */
@media (max-width: 576px) {
  .reviews-header h2 {
    font-size: 2.4rem !important;
  }
  
  .reviews-subtitle {
    font-size: 1.1rem;
  }

  .review-card {
    padding: 6% 7%;
  }

  .quote-text {
    font-size: 0.85rem;
    line-height: 1.25em;
  }

  .author-box h3 {
    font-size: 1.6rem !important;
  }

  .author-box span {
    font-size: 0.8rem;
  }
}


@media (max-width: 480px) {
  .reviews-header h2 {
    font-size: 2.0rem !important;
  }
  
  .reviews-subtitle {
    font-size: 0.9rem;
  }

  .review-card {
    padding: 6% 7%;
  }

  .quote-text {
    font-size: 0.71rem;
    line-height: 0.85em;
    padding-bottom: 0px;
    margin-top: -18px;

  }

  .author-box h3 {
    font-size: 0.8rem !important;  
  }

  .author-box span {
    font-size: 0.7rem;
  }
}
