/*
 Theme Name:   nectarweb
 Theme URI:    https://nectarweb.pl
 Description:  Zapylamy w internety!
 Author:       B@rtas
 Author URI:   https://nectarweb.pl
 Template:     generatepress
 Version:      1.0
*/

/* TYPOGRAFIA GLOBALNA — WYMIUSZENIE ROZMIARÓW FONTÓW */

/* DESKTOP */
h1 {
  font-size: 2.75rem !important;
}

h2, h3, h4, h5, h6 {
  font-size: 2rem !important;
}

p, d, ul, li {
  font-size: 1.2rem !important;
}

/* MOBILE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem !important;
  }

  h2, h3, h4, h5, h6 {
    font-size: 1.4rem !important;
  }

  p, d, ul, li {
    font-size: 1rem !important;
  }
}
/* STYL DLA CONTENERA Z OSADZONYM YOUTUBE */
.video-youtube {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  width: 100%;
  max-width: 420px; /* ograniczenie szerokości */
}

.video-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 💻 DESKTOP: wymuszenie 420px */
@media (min-width: 769px) {
  .video-youtube {
    width: 420px; /* stała szerokość */
  }
}

/* 📱 MOBILE: pełna szerokość i wyśrodkowanie */
@media (max-width: 768px) {
  .video-youtube {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}