.elementor-kit-7{--e-global-color-primary:#000000;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#FFFFFF;--e-global-color-accent:#FFD51E;--e-global-typography-primary-font-family:"League Spartan";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"League Spartan";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-252a787-font-family:"League Spartan";--e-global-typography-252a787-font-size:60px;--e-global-typography-252a787-font-weight:600;--e-global-typography-252a787-text-transform:uppercase;--e-global-typography-252a787-text-decoration:none;--e-global-typography-2655e57-font-family:"League Spartan";--e-global-typography-2655e57-font-size:60px;--e-global-typography-2655e57-font-weight:600;--e-global-typography-2655e57-text-transform:none;--e-global-typography-2655e57-text-decoration:none;color:#FFFFFF;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-kit-7 h1{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1340px;}.e-con{--container-max-width:1340px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;gap:0px;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ====== HERO1: 4 kafle 2x2 ====== */

/* Jeśli nie masz globalnych zmiennych, możesz zostawić to tu */
:root{
  --fl-max: 1400px;        /* szerokość sekcji na desktop */
  --fl-pad: 40px;          /* boczny oddech */
  --fl-gap: 16px;          /* przerwa między kaflami */
  --fl-radius: 10px;
  --fl-text: #ffffff;
  --fl-muted: rgba(255,255,255,.9);
  --fl-shadow: 0 10px 30px rgba(0,0,0,.18);

  /* CTA */
  --fl-cta-border: rgba(255,255,255,.4);
  --fl-cta-bg: rgba(0,0,0,.22);
  --fl-cta-bg-hover: rgba(0,0,0,.32);
}

.fl-hero1{
  width: 100%;
  padding: 24px 0; /* odstęp od innych sekcji - możesz to przenieść do Elementora */
}

.fl-hero1__grid{
  max-width: var(--fl-max);
  margin: 0 auto;
  padding: 0 var(--fl-pad);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fl-gap);
}

.fl-hero1__card{
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--fl-text);

  border-radius: var(--fl-radius);
  overflow: hidden;

  background-image: var(--bg);
  background-size: cover;
  background-position: center;

  min-height: 340px; /* kontrola wysokości kafla */
  box-shadow: none;

  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

/* Gradient/overlay jak na inspiracji */
.fl-hero1__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.05) 70%, rgba(0,0,0,0) 100%),
    radial-gradient(1200px 600px at 20% 85%, rgba(0,0,0,.35), transparent 60%);
  pointer-events: none;
}

/* Tekst w lewym dole */
.fl-hero1__content{
  position: absolute;
  left: 22px;
  bottom: 18px;
  right: 22px;

  display: grid;
  gap: 10px;
}

/* Tytuł: możesz zostawić Inter dla spokoju, albo dać Spartan jeśli chcesz */
.fl-hero1__title{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -0.2px;
  text-transform: lowercase; /* jak na screenie */
  color: var(--fl-text);
}

.fl-hero1__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.fl-hero1__ctaText{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fl-muted);
}

.fl-hero1__ctaIcon{
  width: 34px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid var(--fl-cta-border);
  background: var(--fl-cta-bg);
  color: var(--fl-text);

  transition: background-color .2s ease, transform .2s ease;
}

/* Hover */
.fl-hero1__card:hover{
  transform: translateY(-2px);
  box-shadow: var(--fl-shadow);
}
.fl-hero1__card:hover .fl-hero1__ctaIcon{
  background: var(--fl-cta-bg-hover);
  transform: translateX(2px);
}

/* Focus (klawiatura) */
.fl-hero1__card:focus{
  outline: 2px solid rgba(255,255,255,.75);
  outline-offset: 3px;
}

/* ====== Responsive ====== */
@media (max-width: 1024px){
  :root{ --fl-pad: 24px; }
  .fl-hero1__card{ min-height: 280px; }
  .fl-hero1__title{ font-size: 30px; line-height: 36px; }
}

@media (max-width: 640px){
  .fl-hero1__grid{
    grid-template-columns: 1fr;
  }
  .fl-hero1__card{ min-height: 240px; }
  .fl-hero1__title{ font-size: 28px; line-height: 34px; }
}/* End custom CSS */