/**
 * Theme country flags — SVG pack in assets/country-flags-svg/{iso}.svg (see dbc-flag-icons.php).
 *
 * @package DailyBookChoice
 */

.dbc-flag-icon.dbc-flag-icon--svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 0;
}

/*
 * Max viewport inside the em box — object-fit: contain keeps the full flag visible
 * (cover was cropping different aspect ratios: CH square, UK 1:2, etc.).
 */
.dbc-flag-icon.dbc-flag-icon--svg img {
  display: block;
  width: 1.333333em;
  height: 1em;
  max-width: none;
  object-fit: contain;
  object-position: 50% 50%;
}

/* Square checkbox / shelf variants */
.dbc-flag-icon.dbc-flag-icon--svg.dbc-flag-icon--square img {
  width: 1em;
  height: 1em;
  object-fit: contain;
}
