body {
  background-color: #faf7f0;
}

.page-template-turizmus #content {
  padding-bottom: 233px;
}

#content {
  background-image: url('../images/turizmus-rajz.png');
  background-image: image-set(url('../images/turizmus-rajz.png') 1x,
  url('../images/turizmus-rajz@2x.png') 2x);
  background-size: auto;
  background-position: 100% -10%;
  background-repeat: no-repeat;
}

#content .title {
  font-size: 57px;
  font-weight: 600 !important;
  color: #000;
  margin: 74px 0 156px 0;
  text-align: center;
  font-family: 'Noto Serif', serif;
}

#content .inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
  grid-auto-flow: column;
  gap: 23px;
  width: fit-content;
  margin: 0 auto;
}

#content .image {
  height: 533px;
}

#content .image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  max-width: 100%;
  width: 100%;
}

#content .text {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.25em;
  font-family: 'Noto Serif', serif;
  text-align: center;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px 4px 25px;
  position: relative;
  z-index: 2;
}

#content .text.long {
  font-size: 16px;
}

#content a {
  text-decoration: none;
  position: relative;
}

#content a:before {
  content: '';
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 7.97%, #000000 82.41%);
  transition: 0.2s;
  pointer-events: none;
}

#content a:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.2s;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid #CEAF73;
}

@media (hover: hover) {
  #content a:hover:before {
    opacity: 1;
  }

  #content a:hover:after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 1;
  }

  #content a:hover .text {
    color: #EBC883;
  }
}

@media screen and (max-width: 1400px ) {
  #content .inner {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: unset;
  }
}

@media screen and (max-width: 992px ) {
  #content {
    background-position: 100% 180px;
    background-size: 100%;
  }

  .page-template-turizmus #content {
    padding-top: 1px !important;
  }

  #content .title {
    margin: 50px 0;
  }
}

@media screen and (max-width: 768px ) {
  body:not(.home) #content {
    padding-bottom: 50px;
  }

  #content .image {
    height: 70vw;
  }

  #content .title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 567px ) {
  #content .inner {
    grid-template-columns: 1fr;
    grid-auto-flow: unset;
  }

  #content .text,
  #content .text.long {
    font-size: 14px;
    min-height: 69px;
  }
}