/* ==========================================
   COLOR PALETTE
========================================== */

:root {
  --primary: #5B3A29;
  --primary-dark: #452C20;
  --accent: #C56B32;
  --accent-hover: #A95728;
 
  --background: #F8F5F1;
  --surface: #FFFFFF;
  --surface-alt: #EFE7DF;

  --text: #2D2D2D;
  --text-light: #FFFFFF;

  --border: #DDD5CD;

  --shadow: 0 3px 10px rgba(0,0,0,.10);
  --radius: 10px;
}

/* ==========================================
   RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   BODY
========================================== */

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  background: var(--background);
  color: var(--text);
}

/* ==========================================
   HEADER
========================================== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  padding: 18px 30px;

  background: var(--primary);
  color: var(--text-light);

  box-shadow: var(--shadow);
}

h1, h2, h3 {
  font-family: "Merriweather", serif;
}

/* ==========================================
   LOGO
========================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 120px;
  height: auto;
}

.logo span {
  font-size: 1.4rem;
  font-weight: bold;
}

/* ==========================================
   NAVIGATION
========================================== */

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  transition: color .25s ease;
}

nav a:hover {
  color: #FFD59A;
}

/* ==========================================
   SECTIONS
========================================== */

.section {
  background: var(--surface);
  padding: 40px 20px;
  text-align: center;
}

.section.alt {
  background: var(--surface-alt);
}

.section h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

/* ==========================================
   GRID
========================================== */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 25px;
  margin-top: 30px;
  justify-items: center;
}

/* ==========================================
   CARDS
========================================== */

.card {
  background: var(--surface);

  border-radius: var(--radius);

  padding: 25px;

  box-shadow: var(--shadow);

  transition: transform .25s ease,
              box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
  display: inline-block;

  margin-top: 15px;

  padding: 10px 18px;

  background: var(--accent);
  color: white;

  border-radius: 6px;

  text-decoration: none;

  font-weight: bold;

  transition: background .25s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

/* =========================
   DANCE FILTERS
========================= */

.dance-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
}

.dance-filters label {
  font-weight: 600;
  color: #4b3b5a;      /* Matches your purple/brown theme */
}

.dance-filters select {
  margin-left: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #c7b8d8;
  border-radius: 6px;
  background: white;
  font-size: 0.95rem;
}
/* ==========================================
   TABLES
========================================== */

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

table th {
  background: var(--primary);
  color: white;
}

table th,
table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  line-height: 1.1;
}

table tbody tr:nth-child(even) {
  background: #FAF7F3;
}

table tbody tr:hover {
  background: #F2ECE5;
}

/* =========================
   HOME PAGE INSTRUCTOR CARDS
========================= */

.instructor-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.instructor-card {
  flex: 1 1 320px;
  max-width: 420px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.instructor-card img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  border-radius: 50%;
  float: left;
  margin: 0 1rem 0.75rem 0;
  border: 4px solid #f3eef7;
}

.instructor-card h3 {
  margin-top: 0.25rem;
  color: var(--primary);
}

.instructor-card p {
  line-height: 1.6;
}
.instructor-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.instructor-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.instructor-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.instructor-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.instructor-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.instructor-card p {
  text-align: left;
}
/* =========================
   SCHEDULE PAGE
========================= */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  align-items: stretch;
}

.schedule-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.schedule-card h2 {
  margin-bottom: 15px;
}

.schedule-card hr {
  margin: 12px 0;
}

.schedule-card p {
  margin-bottom: 8px;
}

/* =========================
   SCHEDULE NOTES
========================= */

.schedule-note {
  margin-top: 20px;
  font-size: 16px;
}

.schedule-warning {
  color: red;
  font-weight: bold;
}

/* =========================
   CONTACT PAGE GRID
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 25px;
  max-width: 1300px;
  margin: 30px auto 0;
  align-items: start;
}

.contact-card {
  text-align: left;
}

.contact-card h2 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.contact-card form {
  box-shadow: none;
  padding: 0;
  background: transparent;
  max-width: none;
}

.contact-card label {
  display: block;
  margin-top: 10px;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
}

.contact-card textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-card .btn {
  width: 100%;
  margin-top: 15px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.icon {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CONTACT FORMS
========================= */

form {
  max-width: 600px;
  margin: auto;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 3px;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
}

form textarea {
  min-height: 90px;
  resize: vertical;
}

form button {
  margin-top: 15px;
}
/* =========================
   NEWS PAGE
========================= */
.news-card {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  text-align: left;
}

.news-card h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.news-card h3 {
  margin-top: 20px;
  color: #4b3b5a;
}

.news-card ul {
  margin-left: 25px;
  margin-top: 10px;
}

.news-dance-list {
  display: grid;
  gap: 0.5rem;
  margin: 20px 0;
}


.news-dance-item h4 {
  color: var(--primary);
  margin-bottom: 6px;

}

.news-dance-item a {
  display: inline-block;
  margin-right: 12px;
  color: var(--primary);
  font-weight: bold;
  text-decoration: none;
}

.news-dance-item a:hover {
  text-decoration: underline;
}

.schedule-alert-box {
  background: #fff4e5;
  border-left: 5px solid #b36b00;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.news-dance-item {
  background: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  margin: 0 0 0.25rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 5px solid #b36b00;
}

.news-dance-item h4 {
  margin-top: 0;
}

.news-dance-item a {
  display: inline-block;
  margin-right: 12px;
  font-weight: 600;
}

.muted {
  color: #777;
  font-style: italic;
}

.dance-info-line {
  font-weight: 400;
  color: #6b4a2b;
}

.dance-info,
.dance-level {
  color: #6b4a2b;
}

.dance-level {
  display: inline-block;
  margin-right: 12px;
  font-weight: 600;
}


/* =========================
   SCHEDULE ALERT BOX
========================= */

.schedule-alert-box {
  background: #fff3f3;
  border-left: 6px solid #cc0000;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 25px 0;
}

.schedule-alert-box h3 {
  color: #b30000;
  margin-top: 0;
  margin-bottom: 10px;
}

.schedule-alert-box ul {
  margin: 0;
  padding-left: 20px;
}

.schedule-alert-box li {
  color: #b30000;
  font-weight: bold;
}
/* =========================
   OTHER RESOURCES PAGE
========================= */

.resource-section {
  padding: 40px 20px;
  border-radius: var(--radius);
  margin: 0 auto 30px;
  max-width: 1100px;
}

.resource-light {
  background: var(--surface);
}

.resource-alt {
  background: #F3EEF7;
}

.resource-section h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 25px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.resource-card {
  background: white;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  border-left: 5px solid var(--accent);
}

.resource-card h3 {
  margin-bottom: 10px;
}

.resource-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.resource-card h3 a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-card p {
  color: #555;
}
/* =========================
   EVENTS PAGE
========================= */

.events-list {
  max-width: 850px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  background: var(--surface-alt);
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.event-agenda-item {
  background: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 5px solid #b36b00;
  text-align: left;
}

.event-agenda-item:last-child {
  border-bottom: none;
}

.event-agenda-date {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.event-agenda-item a {
  display: inline-block;
  margin-top: 0.25rem;
  margin-right: 12px;
  font-family: inherit;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.event-agenda-item h2 {
  font-size: 1.2rem;
  margin: 4px 0 6px;
  font-weight: 700;
}

.event-agenda-item h2 a {
  color: var(--text);
  text-decoration: none;
}

.event-agenda-item h2 a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-agenda-item h3,
.event-agenda-item h4 {
  margin: 0 0 0.25rem 0;
}

.event-agenda-item p {
  margin: 0.15rem 0;
}

.event-agenda-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: #666;
  font-weight: 600;
}

.event-agenda-meta span + span::before {
  content: "";
  color: var(--accent);
}
/* ==========================================
   FOOTER
========================================== */

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}


/* =========================
   DATATABLE SORT ICONS
========================= */

table.dataTable thead th {
  cursor: pointer;
}

/* Keep title and icon on one line */
table.dataTable thead th .dt-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Style the built-in DataTables icon */
table.dataTable thead th .dt-column-order {
  color: #FFD59A !important;
  opacity: 1 !important;
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 6px;
}

/* Make active sorted column icon white */
table.dataTable thead th.dt-ordering-asc .dt-column-order,
table.dataTable thead th.dt-ordering-desc .dt-column-order {
  color: white !important;
}

/* =========================
   DATATABLE CUSTOM STYLE
========================= */

/* Header */
table.dataTable thead th {
  background: var(--primary);
  color: white;
}

/* Gold sort arrows */
table.dataTable thead th .dt-column-order {
  color: #FFD59A !important;
  opacity: 1 !important;
}

/* Alternating lavender rows */
table.dataTable tbody tr:nth-child(even) {
  background-color: #F3EEF7;
}

table.dataTable tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}

/* Hover row - soft wine color */
table.dataTable tbody tr:hover {
  background-color: #EFE1E8 !important;
}


/* Pagination buttons */
.dt-paging button {
  border-radius: 8px !important;
  border: 1px solid #c7b8d8 !important;
  background: #F3EEF7 !important;
  color: #4b3b5a !important;
  margin: 0 3px;
}

.dt-paging button:hover {
  background: #6b4f7a !important;
  color: white !important;
}

/* Current page button */
.dt-paging button.current {
  background: #FFD59A !important;
  color: #5B3A29 !important;
  border-color: #C56B32 !important;
  font-weight: 700 !important;
}

/* Match DataTables controls to custom dance filters */

/* DataTables top controls */

.dt-length,
.dt-search {
  font-weight: 600;
  color: #4b3b5a;
}

.dt-length select,
.dt-search input {
  margin-left: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #c7b8d8;
  border-radius: 6px;
  background: white !important;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.dt-search input {
  min-width: 220px;
}


/* One combined search/filter row */

.dt-layout-row:first-of-type .dt-search {
  order: 1;
}

.dt-layout-row:first-of-type .dance-filters {
  order: 2;
}

.dt-layout-row:first-of-type .dt-length {
  order: 3;
}

.dt-layout-row:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.dance-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0;
}

.dance-filters label,
.dt-length,
.dt-search {
  font-weight: 600;
  color: #4b3b5a;
  white-space: nowrap;
}

.dance-filters select {
  width: 130px;
  max-width: 130px;
  padding: 0.45rem 0.7rem;
  border: 1px solid #c7b8d8;
  border-radius: 6px;
  background: white;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.dt-length select,
.dt-search input {
  margin-left: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid #c7b8d8;
  border-radius: 6px;
  background: white !important;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.dt-search input {
  min-width: 220px;
}

/* Tighten space above List of Dances search/filter row */
.dances-section {
  padding-top: 10px;
}

/* Force DataTables 2 sort icons to show */
table.dataTable thead th .dt-column-order::before,
table.dataTable thead th .dt-column-order::after,
table.dataTable thead td .dt-column-order::before,
table.dataTable thead td .dt-column-order::after {
  color: #FFD59A !important;
  opacity: 1 !important;
}

/* Make active sorted arrow white */
table.dataTable thead th.dt-ordering-asc .dt-column-order::before,
table.dataTable thead th.dt-ordering-desc .dt-column-order::after {
  color: #ffffff !important;
  opacity: 1 !important;
}

.related-dance-link {
  margin-top: 18px;
  font-weight: 600;
}

.related-dance-link a {
  display: inline-block;
  margin-left: 6px;
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.related-dance-link a:hover {
  background: var(--accent-hover);
}

/* =========================
   DANCE LIST LINK BUTTONS
========================= */

.dance-list-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 750px;
  margin: 22px auto 0;
}

.dance-list-card {
  flex: 0 1 220px;
  max-width: 240px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  padding: 9px 14px;
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.dance-list-card:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

.dance-list-card h3 {
  color: white;
  margin: 0;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.dance-list-card p {
  display: none;
}

/* =========================
   STEPPIN' OUT DANCES PAGE
   Soft Plum / Lavender
========================= */

.steppin-out-page {
  --primary: #5A4A63;
  --primary-dark: #43364A;
  --accent: #8B7896;
  --accent-hover: #725F7E;
  --surface-alt: #F4F0F6;
  --border: #D8CEDD;
}

/* Steppin' Out page intro */
.steppin-out-page .section:first-of-type {
  background: #FAF7FB;
}

/* Table header */
.steppin-out-page table.dataTable thead th {
  background: #5A4A63 !important;
  color: white !important;
}

/* Sort arrows */
.steppin-out-page table.dataTable thead th .dt-column-order,
.steppin-out-page table.dataTable thead th .dt-column-order::before,
.steppin-out-page table.dataTable thead th .dt-column-order::after {
  color: #E6DDEE !important;
  opacity: 1 !important;
}

/* Slightly darker table section background */
.steppin-out-page .dances-section {
  background: #E9E1EE;
}

/* Alternating rows with more contrast */
.steppin-out-page table.dataTable tbody tr:nth-child(even) {
  background-color: #EFE8F2 !important;
}

.steppin-out-page table.dataTable tbody tr:nth-child(odd) {
  background-color: #FFFFFF !important;
}

/* Hover row */
.steppin-out-page table.dataTable tbody tr:hover {
  background-color: #DDD2E5 !important;
}

/* Links inside the dance table */
.steppin-out-page table.dataTable a {
  color: #5A4A63;
  font-weight: 600;
  text-decoration: none;
}

.steppin-out-page table.dataTable a:hover {
  color: #725F7E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Search, entries, and filters */
.steppin-out-page .dt-length,
.steppin-out-page .dt-search,
.steppin-out-page .dance-filters label {
  color: #5A4A63;
}

.steppin-out-page .dt-length select,
.steppin-out-page .dt-search input,
.steppin-out-page .dance-filters select {
  border-color: #CBBFD2;
  background: white !important;
  color: #2D2D2D;
}

/* Pagination buttons */
.steppin-out-page .dt-paging button {
  border-color: #CBBFD2 !important;
  background: #F4F0F6 !important;
  color: #5A4A63 !important;
}

.steppin-out-page .dt-paging button:hover {
  background: #8B7896 !important;
  color: white !important;
}

/* Current page button */
.steppin-out-page .dt-paging button.current {
  background: #E6DDEE !important;
  color: #43364A !important;
  border-color: #8B7896 !important;
  font-weight: 700 !important;
}

/* Related link button */
.steppin-out-page .related-dance-link a {
  background: #8B7896;
}

.steppin-out-page .related-dance-link a:hover {
  background: #725F7E;
}

/* Table section background */
.steppin-out-page .dances-section {
  background: #F4F0F6;
}
/* =========================
   ARCHIVED DANCES PAGE
   Sage Green / Cream
========================= */

.archived-page {
  --primary: #4F6253;
  --primary-dark: #39483C;
  --accent: #7D9278;
  --accent-hover: #61745D;
  --surface-alt: #F0F4EC;
  --border: #CAD7C2;
}

/* Archived page intro */
.archived-page .section:first-of-type {
  background: #F7FAF4;
}

/* Table header */
.archived-page table.dataTable thead th {
  background: #4F6253 !important;
  color: white !important;
}

/* Sort arrows */
.archived-page table.dataTable thead th .dt-column-order,
.archived-page table.dataTable thead th .dt-column-order::before,
.archived-page table.dataTable thead th .dt-column-order::after {
  color: #E6D8A8 !important;
  opacity: 1 !important;
}

/* Alternating rows */
.archived-page table.dataTable tbody tr:nth-child(even) {
  background-color: #F0F4EC !important;
}

.archived-page table.dataTable tbody tr:nth-child(odd) {
  background-color: #FFFFFF !important;
}

/* Hover row */
.archived-page table.dataTable tbody tr:hover {
  background-color: #E2EADB !important;
}

/* Links inside the dance table */
.archived-page table.dataTable a {
  color: #4F6253;
  font-weight: 600;
  text-decoration: none;
}

.archived-page table.dataTable a:hover {
  color: #7D9278;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Search, entries, and filters */
.archived-page .dt-length,
.archived-page .dt-search,
.archived-page .dance-filters label {
  color: #4F6253;
}

.archived-page .dt-length select,
.archived-page .dt-search input,
.archived-page .dance-filters select {
  border-color: #B7C7AE;
  background: white !important;
  color: #2D2D2D;
}

/* Pagination buttons */
.archived-page .dt-paging button {
  border-color: #B7C7AE !important;
  background: #F0F4EC !important;
  color: #4F6253 !important;
}

.archived-page .dt-paging button:hover {
  background: #7D9278 !important;
  color: white !important;
}

/* Current page button */
.archived-page .dt-paging button.current {
  background: #E6D8A8 !important;
  color: #39483C !important;
  border-color: #7D9278 !important;
  font-weight: 700 !important;
}

/* Related link button */
.archived-page .related-dance-link a {
  background: #7D9278;
}

.archived-page .related-dance-link a:hover {
  background: #61745D;
}

/* Optional: table wrapper area */
.archived-page .dances-section {
  background: #F0F4EC;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:768px) {

  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
    margin-top: 15px;
  }

  .logo img {
    width: 90px;
  }

  .instructor-container {
    flex-direction: column;
    align-items: center;
  }

  .instructor-card {
    max-width: 500px;
    width: 100%;
  }
}
