/* ===== Latest work – usklađeno s Illushcka stilom ===== */

.latest-work {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.latest-work__title {
  letter-spacing: 0.06em;
  font-style: italic;
  margin: 0 0 2rem 0;
}

/* Section header */
.lw-section {
  margin: 2.75rem 0;
}

.lw-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1rem;
}

.lw-section__title {
  letter-spacing: 0.06em;
  font-style: italic;
  margin: 0;
  text-transform: capitalize;
}

/* "Pogledaj sve" – bijelo, žuto na hover, bez crte */
.lw-section__all {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  border-bottom: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.lw-section__all:hover {
  color: #d8c599;
  opacity: 1;
}

/* Grid */
.lw-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

/* Card – Illushcka “glass” look */
.lw-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 12px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  min-height: 100%;
  display: block;
}

.lw-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* Image wrapper (kao illushcka-card-image) */
.lw-card__img {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: #000;
}

.lw-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.lw-card:hover .lw-card__img img {
  transform: scale(1.03);
}

/* Body */
.lw-card__body {
  padding: 12px 4px 2px;
}

/* Sve bijelo */
.lw-card,
.lw-card__title,
.lw-card__meta,
.lw-card__text {
  color: #ffffff;
}

/* Title (times new roman, lagan), žut samo na hover kartice */
.lw-card__title {
  margin: 0 0 0.35rem 0;
  font-family: "times new roman", sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.lw-card:hover .lw-card__title {
  color: #d8c599;
}

/* Meta line (datum/godina) */
.lw-card__meta {
  font-family: "times new roman", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

/* Kratki opis */
.lw-card__text {
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

/* Mobile sitnice */
@media (max-width: 767.98px) {
  .lw-card {
    padding: 14px;
  }
}
/* ===== Latest work header – kao Illushcka hero ===== */

.lw-overline {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d8c599;
  margin-bottom: 0.75rem;
  text-align: center;
}

.latest-work__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 1.05;
  margin: 0 0 2.25rem 0;
  text-align: center;
}

/* da cijeli top dio diše kao hero */
.latest-work {
  padding-top: 5rem; /* malo više kao illushcka hero */
}

/* na manjim ekranima manje paddinga */
@media (max-width: 767.98px) {
  .latest-work {
    padding-top: 4rem;
  }
  .lw-overline {
    font-size: 14px;
  }
}
