 .kolumnyHeaderBlock {
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
    flex-direction: column;
 }

 .kolumnyHeaderBlockItem .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
 }
 
 
 .kolumnyHeaderBlockItem  {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
 .kolumnyHeaderBlockItem .content h1 {
    color: var(--Color-Base-Black, #090D08);
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Tomorrow;
font-size: 42px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 0px;
margin-top: 0px;
 }
 .kolumnyHeaderBlockItem .content p {
    color: var(--Color-Base-Premium-Gray, #343734);
    text-align: center;
    leading-trim: both;
    margin-top: 0px;
    text-edge: cap;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
 }

 .kolumnyHeaderBlockItem .kolumns-container {
    display: flex;
    gap: 40px;
 }
 .kolumnyHeaderBlockItem .kolumns-container .kolumnaItem::after {
    content: "";
    display: flex;
    width: 44px;
    height: 40px;
    padding: var(--Spacing-4, 16px) var(--Spacing-System-spacing-16, 16px);
    align-items: center;
    gap: 8px;
    aspect-ratio: 11/10;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 10px;
    right: 10px;
    background-image: url('data:image/svg+xml,<svg width="47" height="42" viewBox="0 0 47 42" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="44" height="40" fill="%23090D08"/><rect x="1.5" y="1" width="44" height="40" stroke="%23FFF01A" stroke-width="2"/><path d="M17.5 21L28.8333 21M25.5 17L29.5 21L25.5 25" stroke="%23FFF01A" stroke-width="2" stroke-linecap="round"/></svg>');
}
.kolumnyHeaderBlockItem .kolumns-container .kolumnaItem:hover::after{
    background-image: url('data:image/svg+xml,<svg width="47" height="42" viewBox="0 0 47 42" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1.5" y="1" width="44" height="40" fill="%23FFF01A"/><rect x="1.5" y="1" width="44" height="40" stroke="%23FFF01A" stroke-width="2"/><path d="M17.5 21L28.8333 21M25.5 17L29.5 21L25.5 25" stroke="%23090D08" stroke-width="2" stroke-linecap="round"/></svg>');
}

.kolumnyHeaderBlockItem .kolumns-container .kolumnaItem img {
   max-width: 160px;
}
    .kolumnyHeaderBlockItem .kolumns-container .kolumnaItem {
    display: flex;
    padding: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 40px;
    flex: 1 0 0;background: var(--Color-Base-Black, #090D08);
    color: var(--Color-Base-White, #FFF);
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 24px */
text-decoration: none;
 }

 
 .kolumnyHeaderBlockItem .kolumns-container .kolumnaItem:hover { 
   color: var(--Color-Base-Cool-Surface, #D8F2D9);
   leading-trim: both;
   text-edge: cap;
   font-family: Inter;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   line-height: 150%; /* 24px */}

   @media (max-width: 781px) {
      .home .kolumnyHeaderBlock {
         padding-bottom: 40px;
         margin-bottom: 60px;
         padding-top: 40px;
      }
      .kolumnyHeaderBlockItem .kolumns-container {
         flex-direction: column;
     }
     .kolumnyHeaderBlock   {
      background-color: var(--Color-Base-Black, #090D08);
      padding-top:  0px;
  } 
  .kolumnyHeaderBlockItem .content h1 {
   color: var(--Color-Base-White, #FFF);
   text-align: center;
   leading-trim: both;
   text-edge: cap;
   font-family: Tomorrow;
   font-size: 36px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
}
.kolumnyHeaderBlockItem .content p {
   color: var(--Color-Base-Cool-Surface, #D8F2D9);
   text-align: center;
   leading-trim: both;
   text-edge: cap;
   font-family: Inter;
   font-size: 18px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
}
.kolumnyHeaderBlock {
   --teeth-color: #090d08;   /* kolor ząbków */
   --tooth-w: 31px;          /* szerokość jednego ząbka */
   --tooth-h: 20px;          /* wysokość jednego ząbka */
   position: relative;
   overflow: visible;
   padding: 0 20px;
 }
 
 .kolumnyHeaderBlock::after {
   content: "";
   position: absolute;
   left: -10px;
   right: 0;
   bottom: -20px;     /* minimalny naddatek, usuń jeśli niepotrzebny */
   height: var(--tooth-h);
   background: var(--teeth-color);
   pointer-events: none;
 
   /* MASKA z pojedynczego ząbka powtarzana w poziomie */
   -webkit-mask-image: url("/wp-content/uploads/zabek-1.svg");
           mask-image: url("/wp-content/uploads/zabek-1.svg");
   -webkit-mask-repeat: repeat-x;
           mask-repeat: repeat-x;
   -webkit-mask-size: var(--tooth-w) var(--tooth-h);
           mask-size: var(--tooth-w) var(--tooth-h);
   -webkit-mask-position: left bottom;
           mask-position: left bottom;
 }
   }