/* 🔲 Контейнер обгортки */
.custom-imageblock-wrapper {
  position: relative;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #ddd;
  max-width: 800px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

/* 📦 Внутрішній блок */
.custom-imageblock-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🖼️ Зображення */
.custom-imageblock-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 📋 Підпис */
.custom-imageblock-caption {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

/* 🟠 Бейдж — базовий стиль */
.custom-imageblock-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  background-color: #ed6b30;
  color: white;
  z-index: 10;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  margin-right: 6px;
}

/* 📍 Розташування кількох бейджів */
.custom-imageblock-badge + .custom-imageblock-badge {
  left: auto;
  margin-left: 10px;
}

/* 🟡 Стиль 1: emoji — прозорий фон, велике emoji */
.badge-emoji {
  background-color: transparent;
  font-size: 4.8rem;
  padding: 0;
  line-height: 1;
}

/* ⚪ Стиль 2: caption — для світлих підписів */
.badge-caption {
  background-color: white;
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border: 1px solid #ddd;
  border-radius: 12px;
}
/* 📱 Адаптив для мобільних */
@media screen and (max-width: 480px) {
  .custom-imageblock-wrapper {
    padding: 12px;
    border-radius: 16px;
    margin: 20px auto;
  }

  .custom-imageblock-caption {
    font-size: 0.85rem;
    margin-top: 6px;
  }

  .custom-imageblock-badge {
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    font-size: 0.65rem;
    border-radius: 14px;
  }

  .custom-imageblock-badge + .custom-imageblock-badge {
    margin-left: 8px;
  }

  .badge-caption {
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 10px;
  }
  .badge-emoji {
  background-color: transparent;
  font-size: 1.8rem;
  padding: 0;
  line-height: 1;
}
}
