/* static/css/main.css */

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0c0c0c;
  --bg2:      #111111;
  --bg3:      #161616;
  --surface:  #1a1a1a;
  --border:   #2a2a2a;
  --text:     #f0ede8;
  --text-dim: #888880;
  --accent:   #e63e2f;
  --accent-h: #ff4d3d;
  --white:    #ffffff;

  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── UTILITIES ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section--dark { background: var(--bg2); }
.section--surface { background: var(--bg3); }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.heading-xl {
  font-family: var(--font-head);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}

.heading-lg {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.heading-md {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}

.body-lg {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

.body-md {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 18px 40px;
}
.btn--primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230,62,47,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background 0.4s var(--ease), border-bottom 0.4s;
}

.nav.scrolled {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.8vw, 22px);
  letter-spacing: 0.05em;
  color: var(--white);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
}
.nav__cta:hover { background: var(--accent-h) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px 40px 32px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.3s var(--ease);
}
.nav__mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 20px; }
.nav__mobile a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav__mobile a:hover { color: var(--white); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, #1a0a08 0%, transparent 60%),
              linear-gradient(135deg, var(--bg) 0%, #0f0808 100%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 40px 80px 60px;
  max-width: 640px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero__eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(60px, 8.5vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 60px;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* Desktop — desna slika */
.hero__image {
  position: relative;
  z-index: 2;
  height: auto;
  aspect-ratio: 1/1;
  align-self: center;
  overflow: hidden;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero__portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Gradient overlay — leva stran se zlije z ozadjem */
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 20%),
              linear-gradient(to top, var(--bg) 0%, transparent 15%);
	      linear-gradient(to bottom, var(--bg) 0%, transparent 15%);
  z-index: 1;
  pointer-events: none;
}

/* ── HERO MOBILE / DESKTOP SWITCHER ────────────────── */

/* Desktop — mobilna slika skrita */
.hero__image--mobile { display: none; }
.hero__image--desktop { display: block; }

@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: var(--nav-h);
    background: var(--bg);
  }

  /* Mobilna slika — pod gumbom, manjša */
  .hero__image--mobile {
    display: block;
    width: 80%;
    max-width: 320px;
    margin: 28px auto 40px;
    aspect-ratio: 1/1;
    overflow: hidden;
    order: 1;
    border-radius: 4px;
  }
  .hero__image--mobile .hero__portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
  }

  /* Desktop slika — skrita na mobilnem */
  .hero__image--desktop { display: none; }

  .hero__content {
    padding: 32px 24px 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
    order: 0;
  }

  .hero__title {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero__actions {
    width: 100%;
    margin-top: 24px;
  }
  .hero__actions .btn--primary {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
  }

  .hero__scroll { display: none; }
  .hero__eyebrow { margin-bottom: 12px; }
}

/* ── KOMU JE NAMENJENO ─────────────────────────────── */
.komu { padding: 100px 0; background: var(--bg2); }

.komu__header {
  text-align: center;
  margin-bottom: 64px;
}

.komu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.komu__card {
  background: var(--surface);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

.komu__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease);
}

.komu__card:hover { background: #1f1f1f; }
.komu__card:hover::before { height: 100%; }

.komu__icon {
  font-size: 40px;
  margin-bottom: 24px;
}

.komu__card-title {
  font-family: var(--font-head);
  font-size: 36px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.komu__card-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.komu__card-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ── IZKUŠNJE ──────────────────────────────────────── */
.izkusnje { padding: 100px 0; background: var(--bg); }

.izkusnje__header {
  margin-bottom: 64px;
}

.izkusnje__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.izkusnje__item {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s var(--ease);
}

.izkusnje__item:hover { background: var(--surface); }

.izkusnje__num {
  font-family: var(--font-head);
  font-size: 56px;
  line-height: 1;
  color: var(--border);
  margin-bottom: 24px;
  transition: color 0.3s;
}
.izkusnje__item:hover .izkusnje__num { color: var(--accent); }

.izkusnje__item-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.izkusnje__item-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── STORITVE ──────────────────────────────────────── */
.storitve { padding: 100px 0; background: var(--bg2); }

.storitve__header {
  text-align: center;
  margin-bottom: 64px;
}

.storitve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.storitve__card {
  background: var(--surface);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.storitve__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.storitve__card:hover::after { transform: scaleX(1); }
.storitve__card:hover { background: #1f1f1f; }

.storitve__card-num {
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: var(--border);
  margin-bottom: 28px;
  transition: color 0.3s;
}
.storitve__card:hover .storitve__card-num { color: var(--accent); opacity: 0.3; }

.storitve__card-title {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.storitve__card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

.storitve__list {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.storitve__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  padding: 6px 0;
  border-bottom: 1px solid rgba(42,42,42,0.5);
}
.storitve__list li:last-child { border-bottom: none; }

.storitve__list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── KONTAKT ───────────────────────────────────────── */
.kontakt {
  padding: 100px 0 120px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.kontakt::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,62,47,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.kontakt__left .heading-lg { margin-bottom: 20px; }

.kontakt__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}

.kontakt__promise {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt__promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.kontakt__promise-icon {
  width: 32px;
  height: 32px;
  background: rgba(230,62,47,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.kontakt__promise-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Form */
.kontakt__form {
  background: var(--surface);
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.form__title {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 8px;
}

.form__sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--accent);
}

.form__textarea {
  min-height: 100px;
  resize: vertical;
}

.form__select {
  cursor: pointer;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form__success.show { display: block; }
.form__success-icon { font-size: 48px; margin-bottom: 16px; }
.form__success-title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.form__success-text { font-size: 14px; color: var(--text-dim); }

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

/* ── PAGE HERO (podstrani) ─────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* ── BLOG ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.blog-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  overflow: hidden;
}
.blog-card:hover { background: #1f1f1f; }

.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--bg3);
  overflow: hidden;
}
.blog-card__img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 64px;
  color: var(--border);
}

.blog-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card__date { font-size: 12px; color: var(--text-dim); }

.blog-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.blog-card__excerpt { font-size: 14px; font-weight: 300; color: var(--text-dim); flex: 1; }

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 24px;
  transition: gap 0.2s;
}
.blog-card__link:hover { gap: 14px; }

.blog-card__img:empty { display: none; }

/* ── PARTNERJI ─────────────────────────────────────── */
.partnerji-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.partner-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s;
}
.partner-card:hover { background: #1f1f1f; }

.partner-card__logo {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
}
.partner-card__desc { font-size: 14px; font-weight: 300; color: var(--text-dim); line-height: 1.7; }

/* ── O MENI ────────────────────────────────────────── */
.omeni__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.omeni__photo {
  aspect-ratio: 3/4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 120px;
  color: var(--border);
  overflow: hidden;
}

.omeni__content { padding-top: 8px; }
.omeni__content p { font-size: 15px; font-weight: 300; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }

/* ── ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

.fade-up:nth-child(1) { transition-delay: 0ms; }
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .izkusnje__grid { grid-template-columns: 1fr 1fr; }
  .storitve__grid { grid-template-columns: 1fr 1fr; }
  .kontakt__inner { grid-template-columns: 1fr; gap: 48px; }
  .omeni__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .komu__grid { grid-template-columns: 1fr; }
  .izkusnje__grid { grid-template-columns: 1fr; }
  .storitve__grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }

  .kontakt__form { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ── MNENJA ────────────────────────────────────────── */
.mnenja__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mnenje__card {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.mnenje__card:hover { background: #1f1f1f; }

.mnenje__stars {
  font-size: 20px;
  color: #f5a623;
  letter-spacing: 2px;
}

.mnenje__tekst {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.mnenje__avtor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.mnenje__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.mnenje__avatar--placeholder {
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--accent);
}

.mnenje__ime {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mnenja__grid { grid-template-columns: 1fr; }
}
