.mag-browser {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.mag-browser__filters {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-bg, #f5f5f5);
  padding: .75rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

#mag-search {
  width: 100%;
  padding: .5rem .75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.mag-browser__pub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.mag-tab {
  padding: .3rem .75rem;
  border: 1px solid #bbb;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  font-size: .85rem;
  transition: background .15s, color .15s;
}
.mag-tab--active,
.mag-tab:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.mag-section {
  margin-top: 2rem;
}

.mag-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  padding-bottom: .25rem;
  border-bottom: 2px solid #ddd;
}

.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

@media (min-width: 600px) {
  .mag-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (min-width: 900px) {
  .mag-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

.mag-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .15s;
  background: #fff;
}
.mag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.mag-card__cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e8e8;
}
.mag-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mag-card__no-cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #aaa;
}

.mag-card__meta {
  padding: .5rem .6rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mag-card__title {
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mag-card__date,
.mag-card__pages {
  font-size: .7rem;
  color: #777;
}

/* Full-text search results panel */
.mag-search-results {
  margin-top: 1.5rem;
}
.mag-search-results__summary {
  font-size: .9rem;
  margin-bottom: .75rem;
  color: #555;
}
.mag-search-results__empty {
  font-size: .9rem;
  color: #888;
  padding: 1rem 0;
}
.mag-card__excerpt {
  font-size: .7rem;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}
.mag-card__excerpt strong {
  background: #fff3b0;
  font-weight: 600;
}
