

/*
.browse-hero {
  text-align: center;
  padding: 60px 0 40px;
  background: #f8f8f8;
}
.browse-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.browse-hero p {
  color: #555;
  font-size: 16px;
}


.browse-filters {
  padding: 20px 0;
  text-align: center;
}
.filter-container label {
  margin: 0 10px;
  font-size: 15px;
  cursor: pointer;
}


.browse-main .browse-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}


.issues-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}
.issue-item {
  text-align: center;
}
.issue-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.issue-item h3 {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 600;
}


.browse-sidebar {
  position: sticky;
  top: 100px;
}
.browse-sidebar h4 {
  border-bottom: 2px solid #00b5d8;
  padding-bottom: 5px;
  font-size: 16px;
  margin-bottom: 15px;
}
.latest-issue-item {
  text-align: center;
  margin-bottom: 30px;
}
.latest-issue-item img {
  border-radius: 4px;
}
.view-issue-btn {
  display: inline-block;
  background: #00b5d8;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  margin-top: 8px;
  text-decoration: none;
}
.view-issue-btn:hover {
  background: #0092b2;
}


.content-from-magazine {
  font-size: 14px;
  color: #555;
}


.issues-list.loading {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
*/