/* 4-card equal-width 2x2 grid */
.res-grid .comm-card {
  flex: 0 0 calc(50% - 14px);
}

/* Alternate section background */
.res-section-alt {
  background: #fff;
}

/* Special Request box */
.special-request {
  margin-top: 40px;
  background: #fffbf0;
  border: 1.5px solid #f5d87a;
  border-radius: 12px;
  padding: 32px 36px;
}
.special-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.special-badge {
  background: #e8a020;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.special-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2f6b;
  margin: 0;
}
.special-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  list-style: none;
  padding: 0;
}
.special-list li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
  min-width: 200px;
}
.special-list li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: #e8a020;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 700px) {
  .res-grid .comm-card { flex: 0 0 100%; }
  .special-request { padding: 24px 20px; }
  .special-list { flex-direction: column; gap: 8px; }
  .special-list li { min-width: unset; }
}
