main {
  padding-top: 1rem;
}

html, body { overflow-x: hidden; width: 100%; max-width: 100%; }
/* ==========================================================================
   AWMC 2026 Brochure Page Styles
   ========================================================================== */

.brochure-container {
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.brochure-card {
  background: #ffffff;
  border-radius: .5rem;
  border: 1px solid rgba(44, 74, 142, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .brochure-card {
    padding: 1.5rem;
  }
}

.brochure-section-title {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2c4a8e;
  
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(44, 74, 142, 0.1);
  position: relative;
}

.brochure-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #fb923c;
}

.brochure-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

.brochure-text {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.brochure-highlight-box {
  border-left: 2px solid #fb923c;
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}

.brochure-highlight-box h4 {
  color: #fb923c;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.brochure-highlight-box p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Table Styles (Left Scrollable) */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 1.5rem;
  border-radius: .5rem;
  border: 1px solid rgba(44, 74, 142, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  background: #ffffff;
}

.brochure-table {
  width: 100%;
  min-width: 650px; /* Forces smooth horizontal scrolling on mobile */
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  text-align: left;
}

.brochure-table th {
  background: #2c4a8e;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
  font-size: 0.825rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brochure-table td {
  padding: 0.9rem 1.25rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.5;
}

.brochure-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.brochure-table tr:hover {
  background-color: rgba(251, 146, 60, 0.04);
}

.brochure-table td strong {
  color: #0f172a;
}

/* List Formatting */
.brochure-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem 1.5rem;
}

.brochure-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

.brochure-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fb923c;
  font-weight: 700;
}

/* Songs Lyrics Formatting */
.song-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}

.song-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c4a8e;
  margin-bottom: 1rem;
}

.song-lyrics {
  font-family: "Inter", sans-serif;
  white-space: pre-line;
  color: #475569;
  line-height: 1.7;
  font-size: 0.98rem;
}
