@charset "UTF-8";
/*
0 - 390px:      Phone
391 - 744px:    Tablet portrait
745 - 1024px:   Tablet landscape
[1025 - 1599] is where our normal styles apply
1600 px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
html {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --textHeadingColor: #0a0a0a;
  --textPrimaryColor: #707070;
  --textPrimaryColor-rgb: rgb(112, 112, 112);
  --textPostBodyColor: #3e3b36;
  --textPostHeadingColor: #bf8c37;
  --yellowColor: #ffde00;
  --cardsColor: #ede5cd;
  --buttonColor-Bg: #e9dfc1;
  --cardsColor-rgb: 237, 229, 205;
  --safe-top: env(safe-area-inset-top, 0px);
}

:root {
  --header-offset: 11rem;
}

html {
  scroll-padding-top: var(--header-offset);
}

/* tvoji targeti su <article id="section-x"> i imaju klasu .for-librarians */
.u-for-sticky-title[id] {
  scroll-margin-top: var(--header-offset);
}

section {
  margin-top: 10rem;
}

.section--soon {
  text-align: center;
}

.wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.wrapper--relative {
  position: relative;
}

.button-yellow {
  background-color: var(--yellowColor);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  display: inline-block;
  color: var(--textHeadingColor);
  text-decoration: none;
  font-size: 1.6rem;
}
.button-yellow--archive {
  margin-top: 4rem;
}
.button-yellow--with-margin {
  margin-bottom: 0.5rem;
}
.button-yellow:hover {
  background-color: var(--buttonColor-Bg);
}

.u-margin-zero {
  margin: 0 !important;
}

.u-margin-top-medium {
  margin-top: 3rem;
}

.u-margin-top-big {
  margin-top: 6rem;
}
@media only screen and (max-width: 46.5em) {
  .u-margin-top-big {
    margin-top: 0;
  }
}

.u-smallcaps {
  text-transform: inherit !important;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primaryColor);
}

h1 {
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.3;
}

h2 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 700;
}

h3 {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.3;
  text-transform: uppercase;
}

h4 {
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.1;
  text-transform: uppercase;
}

h5 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  text-transform: uppercase;
}

p {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}

.single-page h3 {
  font-size: 2.6rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  text-transform: inherit;
}
.single-page h4 {
  font-size: 2rem;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  text-transform: inherit;
}
.single-page h5 {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  text-transform: inherit;
}
.single-page p {
  margin-top: 1.6rem;
}
.single-page__one-line-space {
  margin-top: 0 !important;
}

h4 {
  font-size: 2rem;
}

ul {
  list-style-type: disc;
  padding-left: 25px;
  font-weight: 400;
}

li {
  position: relative;
  padding-left: 8px;
  text-indent: 0px;
  font-size: 1.6rem;
}

ul ol {
  margin-left: 2.5rem;
}

.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.timeline .year {
  white-space: nowrap;
}

.timeline .text {
  display: block;
}

.list {
  list-style-type: "– " !important;
  padding-left: 25px !important;
}
.list--circle {
  list-style-type: circle !important;
  padding-left: 40px !important;
}
.list--without-style {
  list-style-type: none !important;
  padding-left: 0 !important;
}
.list--without-style li {
  padding-left: 0 !important;
  text-indent: 0px !important;
}
.list__item--dash {
  position: relative !important;
  padding-left: 8px !important;
  text-indent: 0px !important;
}

.header {
  position: relative;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 999;
}
.header--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 5rem;
}
@media only screen and (min-width: 100em) {
  .header--flex {
    padding-top: 3rem;
  }
}
.header__slogan {
  text-transform: uppercase;
  margin-left: 2rem;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media only screen and (max-width: 33em) {
  .header__slogan {
    display: none;
  }
}
.header__slogan span {
  display: block;
  font-weight: bold;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 40%;
  color: var(--textPrimaryColor);
}
@media only screen and (max-width: 64em) {
  .logo-link {
    width: 50%;
  }
}
@media only screen and (max-width: 46.5em) {
  .logo-link {
    width: 80%;
  }
}

.logo-img {
  width: auto;
  height: calc(1.6rem * 3);
}
@media only screen and (min-width: 100em) {
  .logo-img {
    height: calc(2rem * 3);
  }
}

/******************************************************
 **************** STICKY NAVIGATION *******************
 ******************************************************/
body.sticky .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
}

body.sticky {
  padding-top: var(--header-offset);
}

.main-nav {
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 64em) {
  .main-nav {
    padding: 3.8rem;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: rgba(255, 255, 255, 0.6);
    z-index: 10;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in;
  }
}
@media only screen and (max-width: 64em) and (max-width: 24.375em) {
  .main-nav {
    width: 100%;
    align-items: start;
  }
}
@media only screen and (max-width: 64em) and (max-width: 46.5em) {
  .main-nav {
    width: 85%;
  }
}

.main-nav-list {
  list-style: none;
  display: flex;
  gap: 3rem;
  justify-content: center;
  font-size: 2rem;
}
@media only screen and (max-width: 81.25em) {
  .main-nav-list {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 64em) {
  .main-nav-list {
    margin-top: 5rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 1.8rem;
  }
}

.main-nav-link {
  color: var(--textPrimaryColor);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease-in-out;
}
.main-nav-link:hover {
  color: var(--textPostHeadingColor);
}

/**************************************************
 **************** MOBILE NAVIGATION  **************
 **************************************************/
.nav-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.btn-mobile-nav {
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 64em) {
  .btn-mobile-nav {
    display: block;
  }
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
}
@media only screen and (max-width: 24.375em) {
  .icon-mobile-nav {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.icon-mobile-nav[name=close-outline] {
  display: none;
}

@media only screen and (max-width: 64em) {
  .nav-open .icon-mobile-nav[name=close-outline] {
    position: relative;
    display: block;
    z-index: 15;
  }
}

@media only screen and (max-width: 64em) {
  .nav-open .icon-mobile-nav[name=menu-outline] {
    display: none;
  }
}

.mobile-logo-link {
  display: none;
}
@media only screen and (max-width: 64em) {
  .mobile-logo-link {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.mobile-logo-link__slogan {
  text-align: center;
}
.mobile-logo-link__slogan span {
  display: block;
  font-weight: bold;
}

.hero {
  position: relative;
  margin: 3rem 0;
}
.hero__img {
  width: 100%;
  height: auto;
}
.hero__left-frame {
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  transform: translate(-45%, 5%) scale(1.45, 1.45);
}
.hero__right-frame {
  position: absolute;
  top: 0;
  right: 0;
  height: 90%;
  transform: translate(45%, 5%) scale(1.45, 1.45);
}
.hero__bottom-frame {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 100%;
  transform: translate(-40%, 50%) scale(0.4, 0.4);
}

/*
.hero {
  contain: none;
}

body.sticky .hero {
  contain: paint;
}
  */
.search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  width: 90%;
  max-width: 35rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(0.25rem, 1vw, 0.5rem);
  align-items: center;
  background: var(--yellowColor);
  border-radius: 1.5rem;
}
.search:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius: 1.5rem;
}
@media only screen and (max-width: 64em) {
  .search {
    max-width: 30%;
    transform: translate(-50%, -50%);
  }
}
.search svg {
  width: clamp(1.5rem, 3vw, 2.5rem);
  height: clamp(1.5rem, 3vw, 2.5rem);
  pointer-events: none;
}
@media only screen and (max-width: 33em) {
  .search svg {
    display: none;
  }
}
.search__input {
  width: 100%;
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(0.5rem, 3vw, 1rem);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  border: none;
  background: transparent;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search__input:focus {
  outline: none;
  box-shadow: none;
}
.search__input::placeholder {
  color: #000;
  opacity: 0.7;
  font-size: 100%;
}
.search__btn {
  background: none;
  border: none;
  padding: clamp(0.5rem, 2vw, 0.1rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__btn:focus {
  outline: none;
}

.section-featured-posts {
  position: relative;
}
@media only screen and (max-width: 46.5em) {
  .section-featured-posts {
    margin-top: 5rem !important;
    margin-bottom: -5rem !important;
  }
}

.section-featured-posts div:last-child {
  text-align: center;
}

.wrapper__featured-posts {
  position: relative !important;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.wrapper__featured-posts > .wrapper {
  position: relative;
  overflow: hidden;
}
.wrapper__featured-posts .navigation {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  text-align: center;
  margin-top: 2.4rem;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.wrapper__featured-posts .navigation button {
  font-size: 5.2rem;
  line-height: 1;
}

.slides-track__featured-posts {
  display: flex;
  gap: 2.8rem;
}
@media only screen and (max-width: 64em) {
  .slides-track__featured-posts {
    gap: 2rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .slides-track__featured-posts {
    gap: 1.6rem;
  }
}

.featured-post {
  flex: 0 0 calc((100% - 5.6rem) / 3);
}
@media only screen and (max-width: 64em) {
  .featured-post {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
}
@media only screen and (max-width: 46.5em) {
  .featured-post {
    flex: 0 0 100%;
  }
}
.featured-post a {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  min-height: 100%;
  padding: 1.8rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(var(--cardsColor-rgb), 0.22), rgba(var(--cardsColor-rgb), 0.12));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: var(--textPostBodyColor);
  font-size: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.featured-post a:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.8rem 3.6rem rgba(0, 0, 0, 0.12);
}
@media only screen and (max-width: 46.5em) {
  .featured-post a {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.6rem;
  }
}
.featured-post__thumb {
  flex: 0 0 16rem;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: rgba(var(--cardsColor-rgb), 0.25);
  border-radius: 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 81.25em) {
  .featured-post__thumb {
    flex-basis: 15rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .featured-post__thumb {
    width: 100%;
    flex-basis: auto;
    aspect-ratio: 16/10;
  }
}
.featured-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.featured-post__text {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--textPrimaryColor);
  padding-right: 0.8rem;
}
@media only screen and (max-width: 46.5em) {
  .featured-post__text {
    padding-right: 0;
    text-align: left;
  }
}
.featured-post__text .featured-post__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--textPrimaryColor-rgb), 0.65);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.featured-post__text time {
  letter-spacing: 0.04em;
}
.featured-post__text p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  line-height: 1.6;
  color: rgba(var(--textPrimaryColor-rgb), 0.82);
}
.featured-post__text h4 {
  margin-bottom: 1.1rem;
  line-height: 1.3;
  font-size: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 81.25em) {
  .featured-post__text h4 {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .featured-post__text h4 {
    font-size: 2.1rem;
  }
}

.slides-track {
  transition: transform 0.5s ease;
}

.slide {
  padding-right: 1rem;
}

/* Navigacija */
.navigation {
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
.navigation--edition {
  transform: translateY(35%);
}
@media only screen and (max-width: 81.25em) {
  .navigation {
    position: relative;
    top: 0;
    right: 0;
    transform: translateY(0);
    text-align: center;
  }
}

.navigation button {
  pointer-events: all;
  background: none;
  border: none;
  font-size: 7rem;
  color: var(--textPostBodyColor);
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 46.5em) {
  .navigation button {
    font-size: 4rem;
  }
}

.section-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.card {
  padding: 1rem;
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  text-align: center;
}
@media only screen and (max-width: 57em) {
  .card {
    width: 50%;
  }
}
@media only screen and (max-width: 46.5em) {
  .card {
    width: 100%;
  }
}
.card h4,
.card img {
  margin-bottom: 5rem;
}
.card__search {
  position: relative;
  cursor: pointer;
}
.card__img {
  opacity: 1;
}
.card__links {
  opacity: 0;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}
.card__links a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--textPrimaryColor);
  text-decoration: underline;
}
.card.has-links .card__img {
  opacity: 0;
  pointer-events: none;
}
.card.has-links .card__links {
  opacity: 1;
  position: absolute;
  pointer-events: auto;
  visibility: visible;
}
.card__non-link-decoration {
  text-decoration: none;
  color: inherit;
}

.card:nth-child(odd) {
  background-color: rgba(var(--cardsColor-rgb), 0.8);
}

.card:nth-child(even) {
  background-color: rgba(var(--cardsColor-rgb), 0.46);
}

.section-edition-posts {
  background-color: rgba(var(--cardsColor-rgb), 0.46);
  position: relative;
}
.section-edition-posts h2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.wrapper__edition-posts {
  position: relative !important;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  /*
  @include mixin.respond(lap) {
    max-width: 950px;
  }*/
}

.slides-track__edition-posts {
  display: flex;
  gap: 6rem;
}

.edition-post {
  flex: 0 0 calc((100% - 18rem) / 4);
  min-width: 20rem;
  height: 30rem;
}
.edition-post__thumb {
  width: 100%;
  height: auto; /* fiksna širina ili procentualna */
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: rgba(var(--cardsColor-rgb), 0.25);
}
.edition-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.edition-icons {
  margin: 6rem auto;
  display: flex;
  justify-content: center;
  gap: 10rem;
  padding: 5rem;
}
@media only screen and (max-width: 46.5em) {
  .edition-icons {
    flex-direction: column;
    padding: 0 2rem;
    gap: 5rem;
  }
}
.edition-icons h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 46.5em) {
  .edition-icons h3 {
    font-size: 1.6rem;
  }
}
.edition-icons__verzal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.edition-icons img {
  width: 15rem;
  height: 15rem;
}
.edition-icons__bibliografija {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.edition-icons a {
  text-decoration: none;
  color: inherit;
}

.section-services {
  margin-top: 5rem;
}
.section-services h2 {
  margin: 5rem 0;
  margin-bottom: 0;
  text-align: center;
}

.wrapper--services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  align-items: center;
  gap: 3.2rem;
  padding: 3rem 0 1rem;
}
@media only screen and (max-width: 33em) {
  .wrapper--services {
    padding: 3rem;
  }
}

.servise {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 29rem);
  min-height: 22rem;
  text-decoration: none;
  color: inherit;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2.4rem;
  padding: 3rem 2.6rem;
  margin-top: 0;
  background: radial-gradient(circle at top right, rgba(255, 222, 0, 0.18), transparent 36%), linear-gradient(180deg, rgba(var(--cardsColor-rgb), 0.22), rgba(255, 255, 255, 0.92));
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
@media only screen and (max-width: 46.5em) {
  .servise {
    width: 100%;
    min-height: 18rem;
    padding: 2.4rem 2rem;
  }
}
.servise:hover {
  border-color: rgba(250, 87, 38, 0.32);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12);
  transform: translateY(-0.5rem);
}

@media only screen and (max-width: 46.5em) {
  .section-nooks {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 33em) {
  .section-nooks {
    padding: 0;
  }
}
.section-nooks h2 {
  margin: 5rem 0;
  text-align: center;
}

.wrapper--nooks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nook-card {
  width: 45%;
  text-align: center;
  padding: 1rem 1rem;
}
@media only screen and (max-width: 64em) {
  .nook-card {
    flex: 0 0 calc((100% - 8rem) / 2);
  }
}
@media only screen and (max-width: 24.375em) {
  .nook-card {
    flex: 0 0 100%;
  }
}
.nook-card p {
  font-size: 1.6rem;
  margin-top: 1rem;
  font-weight: 600;
}

.nook {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.nook img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

/*
.nook:nth-child(odd) {
  background-color: rgba(var(--cardsColor-rgb), 0.8);
}
.nook:nth-child(even) {
  background-color: rgba(var(--cardsColor-rgb), 0.46);
}
*/
.section-footer {
  padding: 10rem 0 5rem 0;
}

.footer__logo-link {
  text-decoration: none;
  color: var(--textPrimaryColor);
}
.footer__logo-link img {
  display: block;
  margin: 0 auto;
}
.footer__slogan {
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 1rem 0;
  text-align: center;
}
.footer__slogan span {
  display: block;
  font-weight: bold;
}

/* Override za autofill Chrome/Edge/WebKit i novi Blink */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
input:-internal-autofill-selected {
  -webkit-box-shadow: inset 0 0 0 1000px var(--yellowColor) !important;
  box-shadow: inset 0 0 0 1000px var(--yellowColor) !important;
  border-radius: 1.5rem !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.subpage__layout {
  margin-top: 2rem; /* да се не преклапа са фиксним хедером */
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  overflow: visible;
}
@media only screen and (max-width: 46.5em) {
  .subpage__layout {
    flex-direction: column;
  }
}
.subpage__main-content {
  padding: 0 3rem;
}
.subpage__main-content h2 {
  font-size: 3rem;
  margin: 3rem 0 1rem 0;
}

/* Sidebar */
.sidebar-nav {
  position: sticky;
  top: 1rem; /* ostaje vidljiv prilikom skrola */
  align-self: flex-start;
  min-width: 32rem;
  padding: 2rem;
  z-index: 200;
  background-color: rgba(249, 249, 249, 0.95);
  border-radius: 8px;
  /* Ključno: ako je meni viši od viewporta, neka se skroluje unutar sidebara,
     umesto da “izgura” sticky i izgleda kao da odlazi */
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-nav ul li {
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.sidebar-nav ul li a {
  text-decoration: none;
  color: #707070;
  font-size: 1.6rem;
  transition: color 0.3s, background 0.3s;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.sidebar-nav ul li a:hover {
  color: #fff;
  background: #ef5523;
}
.sidebar-nav ul li a.active {
  background: #f9dc04;
  color: #000;
  font-weight: bold;
}

/* Kada sticky header postane fixed, sidebar automatski ide ispod njega */
body.sticky .sidebar-nav {
  top: var(--header-offset); /* bez +1rem */
}

.accordion-toggle {
  width: 100%;
  padding: 1rem;
  position: relative;
  z-index: 201;
  background-color: rgb(249, 249, 249);
  border: 1px solid #f9dc04;
  border-radius: 6px;
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 46.5em) {
  .sidebar-nav {
    width: 100%;
    margin-bottom: 2rem;
    border: none;
    z-index: 200;
    background-color: rgba(249, 249, 249, 0.98);
  }
  .sidebar-nav ul {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
  }
  .sidebar-nav.open ul {
    display: flex;
  }
  .accordion-toggle {
    margin-bottom: 0rem;
  }
}
body.sticky .header {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.subpage__layout {
  margin-top: 0;
}

.section-cards-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 10rem;
}
@media only screen and (max-width: 64em) {
  .section-cards-contact {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 57em) {
  .section-cards-contact {
    margin-top: 5rem;
  }
}

.card-contact {
  background-color: rgba(var(--cardsColor-rgb), 0.46);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem 6rem;
  width: 100%;
}
@media only screen and (max-width: 57em) {
  .card-contact {
    padding: 2rem 4rem;
  }
}
@media only screen and (max-width: 23.125em) {
  .card-contact {
    padding: 2rem;
  }
}
.card-contact h5 {
  margin: 2rem 0 1rem 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 24.375em) {
  .card-contact h5 {
    font-size: 1.6rem;
  }
}
.card-contact p {
  color: var(--color-text);
  font-size: 2rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 24.375em) {
  .card-contact p {
    font-size: 1.6rem;
  }
}
.card-contact p ion-icon {
  font-size: 2rem;
  font-weight: 600;
}
.card-contact a {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
}
.card-contact a:hover {
  text-decoration: underline;
}
.card-contact--full {
  grid-column: 1/-1;
}
.card-contact__departments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media only screen and (max-width: 57em) {
  .card-contact__departments {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 24.375em) {
  .card-contact__departments {
    padding: 0;
  }
}
.card-contact__department {
  display: block;
  height: auto;
  min-height: 25rem;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-radius: 8px;
  height: 25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 57em) {
  .card-contact__department {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 24.375em) {
  .card-contact__department {
    width: 100%;
  }
}
.card-contact__department:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.card-contact__main {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-contact__main:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.maps-container {
  margin-top: 4rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.maps-container iframe {
  border: 0;
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 46.5em) {
  .maps-container iframe {
    height: 300px;
  }
}

.single {
  padding: 0 0 8rem;
}

.single-post {
  width: 100%;
}

/* =========================
   SPLIT HERO
========================= */
.single-hero-split {
  padding: 5.6rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(203, 181, 131, 0.14), transparent 32%), linear-gradient(180deg, #f5f1e8 0%, #f8f6f1 100%);
  border-bottom: 1px solid rgba(18, 32, 43, 0.08);
}

.single-hero-split__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4.8rem;
}

.single-hero-split__content {
  min-width: 0;
}
@media only screen and (max-width: 81.25em) {
  .single-hero-split__content {
    padding: 2rem;
  }
}

.entry-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.entry-taxonomy__tag {
  display: inline-flex;
  align-items: center;
  min-height: 3.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #efe4c8;
  color: #7a5a1f;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.entry-taxonomy__tag:hover {
  background: #e7d9b7;
  color: #6c4e18;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #8c6a2a;
}

.entry-meta__separator {
  opacity: 0.7;
}

.entry-title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(4.2rem, 5.4vw, 7.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #12202b;
}

.entry-subtitle {
  max-width: 62rem;
  margin: 2.4rem 0 0;
  font-size: clamp(2rem, 2vw, 2.6rem);
  line-height: 1.55;
  color: #415260;
}

.single-hero-split__media {
  margin: 0;
  min-width: 0;
}

.single-hero-split__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 2.4rem;
  box-shadow: inset 0 2rem 5rem rgba(18, 32, 43, 0.12);
}

/* =========================
   CONTENT
========================= */
.entry-content {
  width: min(100%, 82rem);
  margin: 0 auto;
  color: #233543;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content figure {
  margin: 0 0 2.4rem;
}

.entry-content p {
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  line-height: 1.85;
  color: #243746;
}

.entry-content h2 {
  margin: 5.6rem 0 2rem;
  font-size: clamp(3rem, 3vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #12202b;
}

.entry-content h3 {
  margin: 4rem 0 1.8rem;
  font-size: clamp(2.3rem, 2.2vw, 3rem);
  line-height: 1.18;
  color: #12202b;
}

.entry-content ul,
.entry-content ol {
  padding-left: 2.8rem;
}

.entry-content li + li {
  margin-top: 1rem;
}

.entry-content blockquote {
  padding: 2.4rem 2.8rem;
  border-left: 4px solid #b99448;
  background: #f3ede0;
  border-radius: 1.6rem;
  font-size: 2rem;
  line-height: 1.7;
  color: #243746;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 4rem auto;
  border-radius: 2rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .single-hero-split__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.6rem;
  }
  .single-hero-split__img {
    height: 42rem;
  }
}
@media (max-width: 900px) {
  .single-hero-split {
    padding: 4.8rem 0 3.2rem;
  }
  .single-hero-split__inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
  .entry-title {
    max-width: 13ch;
  }
  .entry-subtitle {
    max-width: 100%;
  }
  .single-hero-split__img {
    height: 36rem;
  }
  .single-content {
    padding-top: 3.2rem;
  }
  .entry-content h2 {
    margin-top: 4.8rem;
  }
}
@media (max-width: 640px) {
  .single {
    padding-bottom: 6rem;
  }
  .single-hero-split {
    padding: 4rem 0 2.8rem;
  }
  .entry-taxonomy {
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .entry-taxonomy__tag {
    min-height: 3.2rem;
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
  }
  .entry-meta {
    margin-bottom: 1.6rem;
    font-size: 1.2rem;
  }
  .entry-title {
    font-size: clamp(3.4rem, 10vw, 5rem);
  }
  .entry-subtitle {
    margin-top: 1.8rem;
    font-size: 1.9rem;
  }
  .single-hero-split__img {
    height: 28rem;
    border-radius: 1.8rem;
  }
  .single-content {
    padding-top: 2.4rem;
  }
  .entry-content ul,
  .entry-content ol {
    padding-left: 2.4rem;
  }
  .entry-content blockquote {
    padding: 2rem;
    font-size: 1.8rem;
  }
}
.archive-page {
  padding-bottom: 8rem;
}

/* =========================
   ARCHIVE HERO
========================= */
.archive-hero {
  padding: 5.6rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(203, 181, 131, 0.14), transparent 32%), linear-gradient(180deg, #f5f1e8 0%, #f8f6f1 100%);
  border-bottom: 1px solid rgba(18, 32, 43, 0.08);
}

.archive-hero__content {
  width: min(100%, 82rem);
}
@media only screen and (max-width: 81.25em) {
  .archive-hero__content {
    padding: 2rem;
  }
}

.archive-hero__taxonomy {
  display: inline-flex;
  align-items: center;
  min-height: 3.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #efe4c8;
  color: #7a5a1f;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.archive-hero__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(4.2rem, 5.4vw, 7.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #12202b;
}

.archive-hero__description {
  max-width: 68rem;
  margin: 2.4rem 0 0;
  font-size: clamp(2rem, 2vw, 2.6rem);
  line-height: 1.55;
  color: #415260;
}

/* =========================
   LISTING
========================= */
.archive-listing {
  padding-top: 0.8rem;
}

.archive-listing__header {
  margin-bottom: 2.8rem;
}

.archive-listing__title {
  margin: 0;
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.12;
  color: #12202b;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.2rem;
}

.archive-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1.2rem 3rem rgba(18, 32, 43, 0.06);
}

.archive-card__media {
  display: block;
  overflow: hidden;
}

.archive-card__media img {
  display: block;
  width: 100%;
  height: 24rem;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.archive-card:hover .archive-card__media img {
  transform: scale(1.03);
}

.archive-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.4rem;
}

.archive-card__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.archive-card__title a {
  color: #12202b;
  text-decoration: none;
}

.archive-card__title a:hover {
  color: #8c6a2a;
}

.archive-card__excerpt {
  margin: 1.6rem 0 0;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #415260;
}

.archive-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #8c6a2a;
  text-decoration: none;
}

.archive-card__link:hover {
  color: #6f541f;
}

/* =========================
   SHARED META/TAGS
========================= */
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #8c6a2a;
}

.entry-meta__separator {
  opacity: 0.7;
}

/* =========================
   PAGINATION
========================= */
.archive-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 4.8rem;
}

.archive-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  background: #fff;
  color: #12202b;
  text-decoration: none;
  box-shadow: 0 0.6rem 1.6rem rgba(18, 32, 43, 0.06);
}

.archive-pagination__link:hover {
  background: #efe4c8;
  color: #7a5a1f;
}

.archive-pagination__link.is-current {
  background: #12202b;
  color: #fff;
}

.archive-pagination__link--next {
  min-width: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .archive-hero {
    padding: 4.8rem 0 3.2rem;
  }
  .archive-grid {
    gap: 2.4rem;
  }
}
@media (max-width: 640px) {
  .archive-page {
    padding-bottom: 6rem;
  }
  .archive-hero {
    padding: 4rem 0 2.8rem;
  }
  .archive-hero__taxonomy {
    min-height: 3.2rem;
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .archive-hero__title {
    font-size: clamp(3.4rem, 10vw, 5rem);
  }
  .archive-hero__description {
    margin-top: 1.8rem;
    font-size: 1.9rem;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .archive-card__media img {
    height: 22rem;
  }
  .archive-card__body {
    padding: 2rem;
  }
  .archive-card__title {
    font-size: 2.2rem;
  }
  .entry-meta {
    font-size: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */
