/* ===== Instagram Reels widget – čistý, responzivní slider ===== */

.igw-reels {
  max-width: 1100px;
  margin: 32px auto 48px;
  padding: 0 20px;
  font-family: inherit;
}

.igw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.igw-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.igw-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
}

.igw-summary {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.igw-all-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #00740f;
  text-decoration: none;
  white-space: nowrap;
}

.igw-all-link:hover {
  text-decoration: underline;
}

/* slider */
.igw-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.igw-slider::-webkit-scrollbar {
  height: 6px;
}

.igw-slider::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.igw-card {
  flex: 0 0 auto;
  width: 170px;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
}

.igw-thumb-wrap {
  position: relative;
  width: 170px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
}

.igw-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.igw-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.igw-caption {
  font-size: 12px;
  color: #444;
  line-height: 1.4;
  margin: 8px 0 0;
}

@media (max-width: 640px) {
  .igw-reels {
    margin: 24px auto 32px;
    padding: 0 16px;
  }

  .igw-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .igw-title {
    font-size: 15px;
  }

  .igw-card,
  .igw-thumb-wrap {
    width: 130px;
  }

  .igw-thumb-wrap {
    height: 200px;
  }

  .igw-caption {
    font-size: 11px;
  }

  .igw-slider {
    gap: 8px;
  }
}
