/* ==========================================================================
   BiznisVesti.rs - dizajn sistem 2026 (ApaOne paleta)
   ========================================================================== */

:root {
  --bv-dark: #000040;        /* Midnight Express - header, footer, naslovi   */
  --bv-red: #D00707;         /* Free Speech Red - CTA, badge, akcenti        */
  --bv-red-hover: #a80505;
  --bv-light: #E6E6E6;       /* Whisper - pozadine sekcija                   */
  --bv-white: #FFFFFF;
  --bv-ink: #14142b;
  --bv-gray: #5c5c70;
  --bv-border: #e2e2ea;
  --bv-grad-overlay: linear-gradient(to top, rgba(0,0,64,.85), rgba(0,0,64,.25) 55%, transparent);
  --bv-shadow: 0 6px 24px rgba(0, 0, 64, .08);
  --bv-shadow-hover: 0 14px 40px rgba(0, 0, 64, .16);
  --bv-radius: 14px;
  --bv-font-head: "Montserrat", system-ui, sans-serif;
  --bv-font-body: "Open Sans", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--bv-font-body);
  color: var(--bv-ink);
  background: var(--bv-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, .bv-font-head {
  font-family: var(--bv-font-head);
  font-weight: 800;
  color: var(--bv-dark);
  letter-spacing: -.01em;
}

a { color: var(--bv-red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bv-red-hover); }

img { max-width: 100%; }

.bv-btn-red {
  background: var(--bv-red);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.bv-btn-red:hover {
  background: var(--bv-red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(208, 7, 7, .35);
}

.bv-btn-dark {
  background: var(--bv-dark);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bv-btn-dark:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,64,.35); }

/* --------------------------------------------------------------------------
   Reading progress
   -------------------------------------------------------------------------- */
.bv-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--bv-red), #ff5a5a);
  z-index: 2000;
}

/* --------------------------------------------------------------------------
   Top utility bar
   -------------------------------------------------------------------------- */
.bv-topbar {
  background: #00002e;
  color: #cfd0e6;
  font-size: .82rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

.bv-topbar-social { display: flex; gap: .35rem; }
.bv-topbar-social a {
  color: #cfd0e6;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all .2s ease;
}
.bv-topbar-social a:hover { color: #fff; background: var(--bv-red); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Header + navigacija
   -------------------------------------------------------------------------- */
.bv-header { background: var(--bv-dark); position: sticky; top: 0; z-index: 1030; box-shadow: 0 4px 24px rgba(0,0,64,.35); overflow: hidden; }
.bv-header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .9rem 0; }
.bv-logo img { height: 72px; width: auto; transition: transform .25s ease; }
.bv-logo:hover img { transform: scale(1.03); }
.bv-header-ad { margin-left: auto; }
.bv-header-ad img { width: 728px; height: 90px; max-width: 100%; object-fit: contain; border-radius: 8px; }

.bv-burger {
  margin-left: auto;
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background .2s ease;
}
.bv-burger:hover { background: var(--bv-red); }

.bv-nav { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.08); }
.bv-nav-list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.bv-nav-list a {
  display: block;
  color: #e8e8f4;
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: .8rem .7rem;
  position: relative;
}
.bv-nav-list a::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem; bottom: .45rem;
  height: 2px;
  background: var(--bv-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.bv-nav-list a:hover, .bv-nav-list a.active { color: #fff; }
.bv-nav-list a:hover::after, .bv-nav-list a.active::after { transform: scaleX(1); }

/* Pretraga u meniju + fullscreen overlay */
.bv-nav-search {
  background: none;
  border: none;
  color: #e8e8f4;
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem .95rem;
  white-space: nowrap;
  transition: color .2s ease;
}
.bv-nav-search:hover { color: var(--bv-red); }

.bv-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2050;
  background: rgba(0, 0, 46, .97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.bv-search-overlay.open { opacity: 1; visibility: visible; }
.bv-search-overlay-inner { width: min(720px, 92vw); text-align: center; }
.bv-search-overlay-kicker {
  font-family: var(--bv-font-head);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bv-red);
  display: block;
  margin-bottom: 1.2rem;
}
.bv-search-overlay-field {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: .6rem .6rem .6rem 1.2rem;
  transition: border-color .2s ease;
}
.bv-search-overlay.open .bv-search-overlay-field { border-color: rgba(255,255,255,.35); }
.bv-search-overlay-field i { color: rgba(255,255,255,.6); font-size: 1.2rem; }
.bv-search-overlay-field input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--bv-font-body);
  min-width: 0;
}
.bv-search-overlay-field input::placeholder { color: rgba(255,255,255,.45); }
.bv-search-overlay-hint { color: rgba(255,255,255,.45); font-size: .8rem; margin-top: 1rem; }
.bv-search-close {
  position: absolute;
  top: 1.4rem; right: 1.8rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.6rem;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}
.bv-search-close:hover { color: #fff; transform: rotate(90deg); }

.bv-mobile-nav { background: var(--bv-dark); color: #fff; }
.bv-mobile-nav .btn-close { filter: invert(1); }
.bv-mobile-list { list-style: none; padding: 0; margin: 0; }
.bv-mobile-list a {
  display: block;
  color: #e8e8f4;
  font-family: var(--bv-font-head);
  font-weight: 700;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase;
  font-size: .9rem;
}
.bv-mobile-list a:hover { color: var(--bv-red); padding-left: .4rem; }

/* --------------------------------------------------------------------------
   Kartice
   -------------------------------------------------------------------------- */
.bv-card {
  background: var(--bv-white);
  border-radius: var(--bv-radius);
  overflow: hidden;
  box-shadow: var(--bv-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bv-card:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow-hover); }

.bv-card-imgwrap { display: block; overflow: hidden; position: relative; background: var(--bv-light); }
.bv-card-imgwrap img { object-fit: cover; width: 100%; height: 100%; transition: transform .5s ease; }
.bv-card:hover .bv-card-imgwrap img { transform: scale(1.06); }

.bv-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex-grow: 1; }
.bv-card-title { font-size: 1.02rem; line-height: 1.35; margin: 0; }
.bv-card-title a { color: var(--bv-dark); }
.bv-card-title a:hover { color: var(--bv-red); }

.bv-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--bv-gray);
  font-size: .78rem;
  font-weight: 600;
}
.bv-card-meta.light { color: rgba(255,255,255,.85); }
.bv-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--bv-red); display: inline-block; }

.bv-cat-pill {
  display: inline-block;
  background: var(--bv-red);
  color: #fff;
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .28rem .6rem;
  border-radius: 5px;
  width: fit-content;
  transition: background .2s ease;
}
.bv-cat-pill:hover { background: var(--bv-dark); color: #fff; }

.bv-badge-sponsored {
  display: inline-block;
  background: var(--bv-dark);
  color: #ffd76a;
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 5px;
}
.bv-card-imgwrap .bv-badge-sponsored { position: absolute; top: .7rem; left: .7rem; z-index: 2; }

/* Overlay kartica (hero/mozaik) - tamni gradijent za 100% čitljiv beli tekst */
.bv-overlay-card {
  position: relative;
  border-radius: var(--bv-radius);
  overflow: hidden;
  box-shadow: var(--bv-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  min-height: 220px;
}
.bv-overlay-card:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow-hover); }
.bv-overlay-card a { display: block; height: 100%; }
.bv-overlay-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.bv-overlay-card:hover img { transform: scale(1.07); }
.bv-overlay-grad { position: absolute; inset: 0; background: var(--bv-grad-overlay); }
.bv-overlay-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.bv-overlay-tags { display: flex; gap: .4rem; }
.bv-overlay-title { color: #fff; font-size: 1.05rem; line-height: 1.3; margin: 0; text-shadow: 0 2px 12px rgba(0,0,32,.5); }
.bv-overlay-card:hover .bv-overlay-title { text-decoration: underline; text-decoration-color: var(--bv-red); text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   Hero Bento grid
   -------------------------------------------------------------------------- */
.bv-hero { padding: 1.6rem 0 2.2rem; }
.bv-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 215px;
}
.bv-bento-main { grid-column: span 6; grid-row: span 2; }
.bv-bento-side { grid-column: span 3; }
.bv-bento-main .bv-overlay-title { font-size: 1.65rem; line-height: 1.25; }
@media (max-width: 991.98px) {
  .bv-bento { grid-auto-rows: 190px; }
  .bv-bento-main { grid-column: span 12; grid-row: span 2; }
  .bv-bento-side { grid-column: span 6; }
}
@media (max-width: 575.98px) {
  .bv-bento-side { grid-column: span 12; }
  .bv-bento-main .bv-overlay-title { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Sekcije
   -------------------------------------------------------------------------- */
.bv-section { padding: 2.6rem 0; }
.bv-section.alt { background: var(--bv-light); }
.bv-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.bv-section-title {
  font-size: 1.45rem;
  margin: 0;
  position: relative;
  padding-left: .9rem;
}
.bv-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: .12em; bottom: .12em;
  width: 5px;
  border-radius: 3px;
  background: var(--bv-red);
}
.bv-section-more {
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bv-dark);
  white-space: nowrap;
}
.bv-section-more i { transition: transform .2s ease; display: inline-block; }
.bv-section-more:hover { color: var(--bv-red); }
.bv-section-more:hover i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Trending sidebar
   -------------------------------------------------------------------------- */
.bv-trending {
  background: var(--bv-dark);
  border-radius: var(--bv-radius);
  padding: 1.4rem;
  color: #fff;
}
.bv-trending-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: 1.1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--bv-red);
}
.bv-trending-title {
  color: #fff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 0;
}
.bv-trending-title i { color: var(--bv-red); }
.bv-trending-sub {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.bv-trending-item {
  display: flex;
  gap: .9rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: flex-start;
}
.bv-trending-item:last-child { border-bottom: none; padding-bottom: 0; }
.bv-trending-num {
  font-family: var(--bv-font-head);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--bv-red);
  flex: 0 0 2.2rem;
}
.bv-trending-item h4 { font-size: .88rem; line-height: 1.4; margin: 0; }
.bv-trending-item h4 a { color: #e8e8f4; }
.bv-trending-item h4 a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--bv-red); text-underline-offset: 3px; }
.bv-trending-meta { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   Baneri
   -------------------------------------------------------------------------- */
.bv-banner { position: relative; text-align: center; }
.bv-banner img { border-radius: 10px; max-width: 100%; height: auto; }
.bv-banner-tag {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,64,.7);
  color: #fff;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .1rem .4rem;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Članak
   -------------------------------------------------------------------------- */
.bv-article-header { padding: 2.4rem 0 1.2rem; }
.bv-article-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.22; }
.bv-article-sub { font-size: 1.12rem; color: var(--bv-gray); margin-top: .7rem; line-height: 1.55; }

.bv-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: 1.1rem;
  padding: .9rem 0;
  border-top: 1px solid var(--bv-border);
  border-bottom: 1px solid var(--bv-border);
  font-size: .86rem;
  color: var(--bv-gray);
}
.bv-author-chip { display: flex; align-items: center; gap: .55rem; }
.bv-author-chip img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.bv-author-avatar-fallback {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bv-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bv-font-head);
  font-weight: 800;
}
.bv-author-chip a { color: var(--bv-dark); font-weight: 700; }
.bv-author-chip a:hover { color: var(--bv-red); }

.bv-article-figure img { border-radius: var(--bv-radius); width: 100%; }
.bv-article-figure figcaption { font-size: .78rem; color: var(--bv-gray); margin-top: .5rem; }

.bv-article-body { font-size: 1.06rem; line-height: 1.75; }
.bv-article-body p { margin-bottom: 1.25rem; }
.bv-article-body h2 { font-size: 1.45rem; margin: 2rem 0 1rem; }
.bv-article-body h3 { font-size: 1.2rem; margin: 1.6rem 0 .9rem; }
.bv-article-body img { border-radius: 10px; height: auto; margin: .5rem 0; }
.bv-article-body a { text-decoration: underline; text-underline-offset: 3px; }
.bv-article-body blockquote {
  border-left: 5px solid var(--bv-red);
  background: var(--bv-light);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  font-style: italic;
  color: var(--bv-dark);
  font-weight: 600;
}
.bv-article-body blockquote p:last-child { margin-bottom: 0; }
.bv-article-body ul, .bv-article-body ol { margin-bottom: 1.25rem; padding-left: 1.4rem; }
.bv-article-body figure { margin: 1.5rem 0; }
.bv-article-body figcaption { font-size: .78rem; color: var(--bv-gray); }
.bv-article-body iframe { max-width: 100%; border-radius: 10px; }

/* Floating share bar */
.bv-share-float {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 46px;
}
.bv-share-float a, .bv-share-inline a {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--bv-dark);
  background: var(--bv-light);
  transition: all .22s ease;
}
.bv-share-float a:hover, .bv-share-inline a:hover { background: var(--bv-red); color: #fff; transform: translateY(-3px); }
.bv-share-inline { display: flex; gap: .5rem; }
.bv-share-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bv-gray);
  text-align: center;
  font-weight: 700;
}

/* In-article newsletter */
.bv-inline-nl {
  background: var(--bv-dark);
  border-radius: var(--bv-radius);
  padding: 1.6rem;
  margin: 2rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bv-inline-nl::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(208,7,7,.25);
}
.bv-inline-nl h3 { color: #fff; font-size: 1.15rem; }
.bv-inline-nl p { color: rgba(255,255,255,.8); font-size: .9rem; }

.bv-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.bv-tags a {
  background: var(--bv-light);
  color: var(--bv-dark);
  font-size: .76rem;
  font-weight: 700;
  padding: .35rem .7rem;
  border-radius: 6px;
}
.bv-tags a:hover { background: var(--bv-dark); color: #fff; }

/* Author box */
.bv-author-box {
  display: flex;
  gap: 1.1rem;
  background: var(--bv-light);
  border-radius: var(--bv-radius);
  padding: 1.3rem;
  align-items: center;
}
.bv-author-box img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex: 0 0 68px; }
.bv-author-box .bv-author-avatar-fallback { width: 68px; height: 68px; font-size: 1.4rem; flex: 0 0 68px; }
.bv-author-box h4 { margin: 0 0 .25rem; font-size: 1.02rem; }
.bv-author-box p { margin: 0; font-size: .85rem; color: var(--bv-gray); }

/* --------------------------------------------------------------------------
   Newsletter forme
   -------------------------------------------------------------------------- */
.bv-nl-fields { display: flex; gap: .5rem; }
.bv-nl-fields .form-control { border-radius: 8px; }
.bv-nl-msg { font-size: .82rem; margin-top: .4rem; font-weight: 600; }
.bv-nl-msg.ok { color: #2e9e5b; }
.bv-nl-msg.err { color: var(--bv-red); }
.bv-footer .bv-nl-msg.err { color: #ff8080; }

/* Sticky bottom newsletter bar */
.bv-sticky-nl {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--bv-dark);
  color: #fff;
  padding: .8rem 0;
  z-index: 1040;
  box-shadow: 0 -8px 30px rgba(0,0,64,.3);
  transform: translateY(110%);
}
.bv-sticky-nl .bv-nl-fields { max-width: 460px; }
.bv-sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.6rem;
  line-height: 1;
}
.bv-sticky-close:hover { color: #fff; }

/* --------------------------------------------------------------------------
   E-book / Podcast
   -------------------------------------------------------------------------- */
.bv-page-hero {
  background: var(--bv-dark);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.bv-page-hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,7,7,.35), transparent 70%);
}
.bv-page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.5rem); position: relative; z-index: 1; }
.bv-page-hero p { color: rgba(255,255,255,.82); max-width: 720px; position: relative; z-index: 1; }

.bv-ebook-card {
  background: #fff;
  border-radius: var(--bv-radius);
  box-shadow: var(--bv-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bv-ebook-card:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow-hover); }
.bv-ebook-cover {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bv-dark), #1a1a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.bv-ebook-cover img { width: 100%; height: 100%; object-fit: cover; }
.bv-ebook-cover .bi { font-size: 3.4rem; color: rgba(255,255,255,.85); }
.bv-ebook-label {
  position: absolute;
  top: .8rem; left: .8rem;
  background: var(--bv-red);
  color: #fff;
  font-family: var(--bv-font-head);
  font-size: .64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .28rem .6rem;
  border-radius: 5px;
}
.bv-ebook-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem; flex-grow: 1; }
.bv-ebook-body h3 { font-size: 1.02rem; margin: 0; }
.bv-ebook-body p { font-size: .85rem; color: var(--bv-gray); margin: 0; }
.bv-ebook-body .btn { margin-top: auto; }

.bv-podcast-card {
  background: var(--bv-dark);
  border-radius: var(--bv-radius);
  overflow: hidden;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.bv-podcast-card:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow-hover); }
.bv-podcast-thumb { position: relative; aspect-ratio: 16 / 9; background: #00002e; }
.bv-podcast-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.bv-podcast-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bv-podcast-play span {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(208,7,7,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  padding-left: 4px;
  transition: transform .25s ease;
  box-shadow: 0 8px 30px rgba(208,7,7,.5);
}
.bv-podcast-card:hover .bv-podcast-play span { transform: scale(1.12); }
.bv-podcast-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex-grow: 1; }
.bv-podcast-ep {
  font-family: var(--bv-font-head);
  color: var(--bv-red);
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bv-podcast-body h3 { color: #fff; font-size: 1rem; line-height: 1.4; margin: 0; }
.bv-podcast-body h3 a { color: #fff; }
.bv-podcast-body h3 a:hover { color: #ffb3b3; }
.bv-podcast-guest { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: auto; }

/* --------------------------------------------------------------------------
   Pratite nas (diskretna traka) + baner iznad footera
   -------------------------------------------------------------------------- */
.bv-social-strip {
  padding: 1.4rem 0;
  border-top: 1px solid var(--bv-border);
}
.bv-social-strip-label {
  font-family: var(--bv-font-head);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bv-gray);
}
.bv-social-strip a {
  color: var(--bv-gray);
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bv-light);
  font-size: 1rem;
  transition: all .2s ease;
}
.bv-social-strip a:hover { background: var(--bv-dark); color: #fff; transform: translateY(-2px); }

.bv-prefooter-ad { padding: 2rem 0; background: var(--bv-white); }

/* --------------------------------------------------------------------------
   Statične stranice
   -------------------------------------------------------------------------- */
.bv-static { font-size: 1.02rem; line-height: 1.75; }
.bv-static h2 { font-size: 1.4rem; margin: 1.8rem 0 .9rem; }
.bv-static .lead { font-size: 1.15rem; color: var(--bv-gray); }

/* --------------------------------------------------------------------------
   Paginacija
   -------------------------------------------------------------------------- */
.bv-pagination { margin-top: 2.2rem; }
.bv-pagination .page-link {
  color: var(--bv-dark);
  border-color: var(--bv-border);
  font-weight: 700;
  border-radius: 8px !important;
  margin: 0 .18rem;
}
.bv-pagination .page-item.active .page-link { background: var(--bv-red); border-color: var(--bv-red); color: #fff; }
.bv-pagination .page-link:hover { background: var(--bv-dark); color: #fff; border-color: var(--bv-dark); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.bv-footer { background: var(--bv-dark); color: #c9c9e0; margin-top: 3rem; }
.bv-footer-logo { max-width: 220px; height: auto; transition: transform .25s ease; }
.bv-footer a:hover .bv-footer-logo { transform: scale(1.03); }
.bv-footer-about { font-size: .88rem; color: #b9b9d4; }
.bv-footer-title {
  color: #fff;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}
.bv-footer-links { list-style: none; padding: 0; margin: 0; }
.bv-footer-links a { display: inline-block; color: #b9b9d4; padding: .3rem 0; font-size: .88rem; }
.bv-footer-links a:hover { color: #fff; padding-left: .3rem; }
.bv-footer-contact li { padding: .3rem 0; font-size: .9rem; display: flex; align-items: center; gap: .2rem; }
.bv-footer-contact li i { color: var(--bv-red); }
.bv-footer-contact a { color: #b9b9d4; }
.bv-footer-contact a:hover { color: #fff; }
.bv-footer .bv-nl-fields { margin-top: .3rem; }
.bv-footer .bv-topbar-social { gap: .55rem; }
.bv-footer .bv-topbar-social a { background: rgba(255,255,255,.07); }
.bv-footer .bv-topbar-social a:hover { background: var(--bv-red); }
.bv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: #9a9abc;
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
  row-gap: .5rem !important;
}
.bv-footer-bottom a { color: #cfd0e6; font-weight: 600; }
.bv-footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.bv-404 { text-align: center; padding: 5rem 0; }
.bv-404 .code {
  font-family: var(--bv-font-head);
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--bv-red);
}

/* --------------------------------------------------------------------------
   GSAP početna stanja (animira main.js; bez JS-a sve ostaje vidljivo)
   -------------------------------------------------------------------------- */
html.bv-gsap [data-gsap="card"] { opacity: 0; transform: translateY(28px); }
html.bv-gsap [data-gsap="fade"] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html.bv-gsap [data-gsap="card"], html.bv-gsap [data-gsap="fade"] { opacity: 1 !important; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
