/* Magazine search-as-you-type */
.block-sdt-magazine-search {
  position: relative;
  z-index: 50;
}

.magazine-search {
  position: relative;
  z-index: 50;
  max-width: 1200px;
  margin: 0 auto 1.25rem;
  padding: 0 1rem;
}

.magazine-search__box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.1rem;
  background: #fff;
  border: 2px solid #1551C1;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(21, 81, 193, 0.08);
}

.magazine-search__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231551C1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
}

.magazine-search__input {
  flex: 1 1 auto;
  /* The theme applies a global 1px border to inputs; force it off so the field
     reads as a single clean pill (the outer box carries the border). */
  border: 0 !important;
  outline: 0;
  box-shadow: none !important;
  font-size: 1.0625rem;
  padding: 0.55rem 0;
  background: transparent;
  color: #2D2F34;
}

.magazine-search__input::placeholder {
  color: #6B7280;
  opacity: 1;
}

/* Loading state shown while a query is in flight. */
.magazine-search__status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  color: #64748b;
  font-size: 0.9rem;
}

.magazine-search__spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid rgba(21, 81, 193, 0.25);
  border-top-color: #1551C1;
  border-radius: 50%;
  animation: magazine-search-spin 0.6s linear infinite;
}

@keyframes magazine-search-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .magazine-search__spinner {
    animation-duration: 1.5s;
  }
}

/* Results overlay the page (must not push content down). */
.magazine-search__results {
  position: absolute !important;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 6px);
  z-index: 60;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  max-height: 70vh;
  overflow-y: auto;
}

.magazine-search__results[hidden] {
  display: none;
}

.magazine-search__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
}

.magazine-search__item:last-child {
  border-bottom: 0;
}

.magazine-search__item:hover,
.magazine-search__item:focus {
  background: #f5f8ff;
}

.magazine-search__thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 58px;
  border-radius: 6px;
  background: #edf1fa no-repeat center / cover;
}

.magazine-search__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.magazine-search__date {
  font-size: 0.8rem;
  color: #6b7280;
  letter-spacing: 0.02em;
}

.magazine-search__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: #2d2f34;
}

.magazine-search__teaser {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #4b5563;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.magazine-search__empty {
  padding: 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}
