/* Kino Tuškanac — site additions on top of the original all.css.
 *
 * Uniform image windows. The old CMS force-resized every upload to fixed sizes
 * (films 636×385, cycles/articles 346×246, directors 200×290), which is why the
 * old site looked uniform. Uploads now keep their own proportions, so each image
 * spot gets a fixed-proportion window and the image is center-cropped into it.
 * For images that already have the old dimensions this changes nothing.
 */

/* Homepage "Istaknuti filmovi" pair + film detail image (636×385) */
.featured-movies .image-link img,
img.movie-image {
  aspect-ratio: 636 / 385;
  object-fit: cover;
}

/* Sliders (film + cycle cards): fill the card window instead of letterboxing.
   (all.css sets 100%, and 101% on cycle pages via a 3-class selector — match it.) */
.slider-container .item-image,
.container.cycle .slides-container .item-image {
  background-size: cover;
}

/* Homepage "Aktualno" cycle image + cycle page image (346×246).
   Widths stay as all.css defines them (the cycle page image bleeds to 125%). */
.image-link.latest .latest-image,
.left-image {
  aspect-ratio: 346 / 246;
  object-fit: cover;
}

/* Article / static-page image (346×246) and director portrait (200×290) */
.container.cycle .cycle-image {
  aspect-ratio: 346 / 246;
  object-fit: cover;
}
.container.cycle .director-image {
  width: 200px;
  height: 290px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .container.cycle .cycle-image {
    width: 346px;
    height: 246px;
  }
}
