@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
  height: 100%;
}

body {
  margin: 0;
  background-image: url("../../images/pattern/pattern.svg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  overflow-y: auto; /* scrollbar na body */
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.01em;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;          /* centrování */
  background: #ffffff;    /* aby byl obsah čitelný */
  min-height: 100vh;

  box-shadow: 0px 0px 25px rgb(163, 163, 163);
  /*
  border-left-color:rgba(0, 0, 0, 0.075) ;
  border-left-style: solid;
  border-left-width: 1px;
  */
}

.image iframe {
  width: 100%;
  height: 100%;   /* výška dle potřeby */
  min-height: 600px;
  display: block;
  border: none;
}

      
  @media screen and (max-width: 480px) {
    .items-dolni-oddelovac {
      padding-bottom: 3rem;
      border-bottom-color: rgba(0, 0, 0, 0.2);
      border-bottom-style: solid;
      border-bottom-width: 0.8px;
    }
	}

.date-bold {
  font-weight: 500;
}

.spotlight .image {
  position: relative;
  background: none;
}

.spotlight:not(.is-inactive) .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
}

.banner .image {
  position: relative;
  background: none;
}

.banner:not(.is-inactive) .image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;

}

img.img-ikona {
  max-width: 48px;
  align-self: inherit;
}

.font-bigger {
  font-size: 1.2rem;
}


/* pro velke obrazovky stejně jako pro menší 

    @media screen and (max-width: 3360px) {
        html {
          font-size: 14pt;
        }
      }


    @media screen and (max-width: 3360px) {

      .banner.style1 .content {
        padding: 5rem 5rem 3rem 5rem ;
      }

    }

		@media screen and (max-width: 3360px) {

			.spotlight.style1 .content {
				padding: 5rem 5rem 3rem 5rem ;
			}

		}

    @media screen and (max-width: 3360px) {

      .wrapper.style1 > .inner {
        padding: 5rem 2.5rem 3rem 2.5rem ;
      }

    }
  */