/* Brand Page Styles */
.brand {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* Brand Header */
.brand__header {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(180, 240, 0, 0.2);
}
@media (max-width: 768px) {
  .brand__header {
    flex-direction: column;
    text-align: center;
  }
}
/* Brand Logo */
.brand__logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
.brand__logo img {
  max-width: 150px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Brand Info */
.brand__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.brand__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #F4F6F8;
}
/* Brand Meta */
.brand__meta {
  font-size: 0.875rem;
  color: #718096;
}
/* Brand Description */
.brand__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #a0aec0;
}
/* Brand Links */
.brand__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.brand__website a,
.brand__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #0a1a38;
  border: 1px solid rgba(180, 240, 0, 0.25);
  border-radius: var(--border-radius-ui);
  text-decoration: none;
  color: #a0aec0;
  font-size: 0.875rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.brand__website a:hover,
.brand__social a:hover {
  background: rgba(180, 240, 0, 0.07);
  border-color: #B4F000;
  color: #F4F6F8;
  text-decoration: none;
}
@media (max-width: 768px) {
  .brand__links {
    justify-content: center;
  }
}
/* Drinks Section */
.brand__drinks {
  margin-top: 2rem;
}
.brand__drinks-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #F4F6F8;
}
.brand__drinks-count {
  font-weight: 400;
  color: #718096;
}
/* Series Section */
.brand__series {
  margin-bottom: 2.5rem;
  scroll-margin-top: 6rem;
}
.brand__series:last-child {
  margin-bottom: 0;
}
.brand__series-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #F4F6F8;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.brand__series-title a {
  color: inherit;
  text-decoration: none;
}
.brand__series-title a:hover {
  color: #B4F000;
}
.brand__series-count {
  font-size: 0.875rem;
  font-weight: 400;
  color: #718096;
}
.brand__series-description {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #a0aec0;
  margin-bottom: 1rem;
  max-width: 800px;
}
/* Brand description & SEO text blocks */
.block-field-blockbrandbranddescription,
.block-field-blockbrandbrandseo-text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 800px;
}
/* Drinks Grid */
.brand__drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .brand__drinks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
