.mai-ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) {
  .mai-ev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .mai-ev-grid {
    grid-template-columns: 1fr;
  }
}

.mai-ev-archive-page .mai-ev-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 100%;
  margin-inline: 0;
}
@media (max-width: 960px) {
  .mai-ev-archive-page .mai-ev-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .mai-ev-archive-page .mai-ev-grid {
    grid-template-columns: 1fr;
  }
}

.mai-ev-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
}
.mai-ev-filter__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e1ecb9;
  color: #3e5769;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mai-ev-filter__item:hover {
  background: #96c400;
  color: #303b0a;
}
.mai-ev-filter__item.is-active {
  background: #1e689f;
  color: #fff;
}

.mai-ev-filter-wrap {
  position: relative;
  margin: 0 0 32px;
}

@media (max-width: 680px) {
  .mai-ev-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .mai-ev-filter::-webkit-scrollbar {
    display: none;
  }
  .mai-ev-filter__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .mai-ev-filter-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255, 250, 242, 0), #fffaf2);
  }
}
.mai-ev-grid.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.15s;
}

.mai-ev-card {
  position: relative;
}
.mai-ev-card .event-card__image {
  position: relative;
}
.mai-ev-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #b91c1c;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .mai-ev-card__badge {
    padding: 4px 10px;
  }
}
.mai-ev-card__btn {
  margin-top: 5px;
  cursor: pointer;
}

.mai-ev-none,
.mai-ev-detail__noreg {
  color: #14252b;
  opacity: 0.7;
}

.mai-ev-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 16px;
}
.mai-ev-modal[hidden] {
  display: none;
}
.mai-ev-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(62, 87, 105, 0.6);
  backdrop-filter: blur(3px);
  animation: mai-ev-overlay-in 0.4s ease both;
}
.mai-ev-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  background: #fffaf2;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-pop);
  margin: auto;
  overflow: hidden;
  transform-origin: center bottom;
  animation: mai-ev-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.mai-ev-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  padding: 2px 0 0;
  border: none;
  border-radius: 50%;
  background: var(--surface-accent);
  color: var(--c-ink);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-bg), color var(--t-color);
}
.mai-ev-modal__close:hover {
  background: var(--c-accent);
  color: var(--c-ink);
}
.mai-ev-modal__close:focus-visible {
  outline: 2px solid #3e5769;
  outline-offset: 2px;
}
.mai-ev-modal__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.mai-ev-modal__loading {
  text-align: center;
  padding: 60px 40px;
  color: #3e5769;
}
.mai-ev-modal__loading::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border: 4px solid rgba(62, 87, 105, 0.15);
  border-top-color: #96c400;
  border-radius: 50%;
  animation: mai-ev-spin 0.7s linear infinite;
}

@keyframes mai-ev-spin {
  to {
    transform: rotate(360deg);
  }
}
body.mai-ev-modal-open {
  overflow: hidden;
}

@keyframes mai-ev-overlay-in {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(3px);
  }
}
@keyframes mai-ev-pop-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.mai-ev-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.mai-ev-form legend {
  color: #3e5769;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0;
}
.mai-ev-form legend:focus {
  outline: none;
}
.mai-ev-form input[type=text],
.mai-ev-form input[type=email],
.mai-ev-form input[type=number],
.mai-ev-form textarea {
  width: 100%;
  border: 2px solid rgba(62, 87, 105, 0.18);
  border-radius: 10px;
  background: #fff;
  color: #14252b;
  font-size: 1rem;
  font-weight: 500;
  padding: 11px 14px;
}
.mai-ev-form textarea {
  min-height: 120px;
  resize: vertical;
}
.mai-ev-form .is-invalid {
  border-color: #ef4444 !important;
}

.mai-ev-detail {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.mai-ev-detail[hidden] {
  display: none;
}
.mai-ev-detail__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 40px 40px 10px;
}
@media (max-width: 680px) {
  .mai-ev-detail__scroll {
    padding: 28px 22px 10px;
  }
}
.mai-ev-detail__cta {
  flex-shrink: 0;
  padding: 16px 40px;
  border-top: 1px solid rgba(62, 87, 105, 0.12);
  background: #fffaf2;
}
@media (max-width: 680px) {
  .mai-ev-detail__cta {
    padding: 14px 22px;
  }
}
.mai-ev-detail__cta .mai-ev-open-form {
  width: 100%;
  margin: 0;
}
.mai-ev-detail__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 22px;
}
.mai-ev-detail__image img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  display: block;
}
.mai-ev-detail__title {
  color: #1e689f;
  font-size: 29px;
  line-height: 1.2;
  margin: 28px 0 18px;
}
@media (max-width: 680px) {
  .mai-ev-detail__title {
    font-size: 24px;
    margin: 4px 0 14px;
  }
}
.mai-ev-detail__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mai-ev-detail__facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px 9px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.mai-ev-detail__facts svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}
.mai-ev-detail__facts .mai-ev-fact--location {
  background: #e1ecb9;
  color: #303b0a;
}
.mai-ev-detail__facts .mai-ev-fact--price {
  background: #c5e6f5;
  color: #3e5769;
}
.mai-ev-detail__content {
  margin: 0;
  line-height: 1.65;
  color: #14252b;
}
.mai-ev-detail__content h2, .mai-ev-detail__content h3, .mai-ev-detail__content h4, .mai-ev-detail__content h5 {
  color: #1e689f;
  line-height: 1.3;
}
.mai-ev-detail__content h2 {
  font-size: 1.2rem;
  margin: 1.2em 0 0.4em;
}
.mai-ev-detail__content h3 {
  font-size: 22px;
  margin: 35px 0 20px;
}
.mai-ev-detail__content h4 {
  font-size: 0.95rem;
  margin: 1em 0 0.3em;
}
.mai-ev-detail__content p:first-child {
  margin-top: 0;
}
.mai-ev-detail__content p:last-child {
  margin-bottom: 0;
}
.mai-ev-detail__content p, .mai-ev-detail__content ul li {
  font-size: 17px;
}
@media (max-width: 680px) {
  .mai-ev-detail__content p, .mai-ev-detail__content ul li {
    font-size: 16px;
  }
}
.mai-ev-detail__content ul, .mai-ev-detail__content ol {
  padding-left: 25px;
  margin-bottom: 25px;
}
.mai-ev-detail__dates-head {
  color: #1e689f;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.mai-ev-detail__dates {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.mai-ev-detail__dates li {
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  color: #3e5769;
  font-weight: 600;
}

.mai-ev-divider {
  border: none;
  border-top: 1px solid rgba(62, 87, 105, 0.12);
  margin: 6px 0 22px;
}

.mai-ev-avail {
  font-size: 15px;
  color: #303b0a;
  font-weight: 600;
}
.mai-ev-avail--full {
  color: #b91c1c;
}

.mai-ev-datechoice {
  border: none;
  padding: 0;
  margin: 0 0 22px;
}
.mai-ev-datechoice legend {
  color: #3e5769;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 12px;
  padding: 0;
}

.mai-ev-date-error {
  color: #b91c1c;
  font-size: 0.9rem;
  margin: 8px 0 0;
}

.mai-ev-date-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px 16px;
  background: #fff;
  border: 2px solid rgba(62, 87, 105, 0.15);
  border-radius: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mai-ev-date-opt:hover {
  border-color: #96c400;
}
.mai-ev-date-opt:has(input:checked) {
  border-color: #96c400;
  box-shadow: 0 0 0 3px rgba(150, 196, 0, 0.18);
}
.mai-ev-date-opt:has(input:focus-visible) {
  outline: 2px solid #3e5769;
  outline-offset: 2px;
}
.mai-ev-date-opt input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  accent-color: #96c400;
  cursor: pointer;
}
.mai-ev-date-opt__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mai-ev-date-opt__label {
  font-weight: 600;
  color: #3e5769;
  font-size: 1.05rem;
}
.mai-ev-date-opt__loc {
  font-size: 0.85rem;
  color: #14252b;
  opacity: 0.7;
}
.mai-ev-date-opt__avail {
  font-size: 15px;
  font-weight: 600;
  color: #303b0a;
  text-align: left;
}
.mai-ev-date-opt.is-full {
  background: #fff7ed;
}
.mai-ev-date-opt.is-full .mai-ev-date-opt__avail {
  color: #b45309;
}
.mai-ev-date-opt.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
@media (max-width: 680px) {
  .mai-ev-date-opt {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    padding: 14px 16px;
  }
  .mai-ev-date-opt input {
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: center;
  }
  .mai-ev-date-opt .mai-ev-date-opt__main {
    grid-column: 2;
    grid-row: 1;
  }
  .mai-ev-date-opt .mai-ev-date-opt__avail {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
}

.mai-ev-date-opt__date::after {
  content: ",";
}

.mai-ev-date-opt__time {
  margin-left: 4px;
}

@media (max-width: 680px) {
  .mai-ev-date-opt__date,
  .mai-ev-date-opt__time {
    display: block;
  }
  .mai-ev-date-opt__date::after {
    content: none;
  }
  .mai-ev-date-opt__time {
    margin-left: 0;
  }
}
.mai-ev-section__title {
  color: #1e689f;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 28px 0 14px;
}

.mai-ev-speaker__name {
  font-weight: 600;
  font-size: 18px;
  color: #3e5769;
  text-decoration: none;
}
.mai-ev-speaker__name:hover {
  color: #96c400;
}

.mai-ev-partner__name {
  font-size: 18px;
  color: #3e5769;
}

.mai-ev-booking {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 36px 40px 0;
}
@media (max-width: 680px) {
  .mai-ev-booking {
    padding: 26px 22px 0;
  }
}
.mai-ev-booking[hidden] {
  display: none;
}

.mai-ev-progress {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  counter-reset: step;
}
.mai-ev-progress li {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 0.85rem;
  color: rgba(62, 87, 105, 0.5);
  font-weight: 600;
  padding-top: 44px;
  transition: color 0.3s ease;
}
.mai-ev-progress li span {
  display: block;
}
.mai-ev-progress li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(62, 87, 105, 0.25);
  color: rgba(62, 87, 105, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.mai-ev-progress li::after {
  content: "";
  position: absolute;
  top: 16px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: rgba(62, 87, 105, 0.18);
  z-index: -1;
  transition: background 0.3s ease;
}
.mai-ev-progress li:first-child::after {
  display: none;
}
.mai-ev-progress li.is-active {
  color: #3e5769;
}
.mai-ev-progress li.is-active::before {
  background: #96c400;
  border-color: #96c400;
  color: #fff;
  animation: mai-ev-pop 0.3s ease;
}
.mai-ev-progress li.is-active::after {
  background: #96c400;
}

@keyframes mai-ev-pop {
  0% {
    transform: translateX(-50%) scale(0.7);
  }
  60% {
    transform: translateX(-50%) scale(1.12);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
.mai-ev-step {
  border: none;
  padding: 0;
  margin: 0;
  display: none;
}
.mai-ev-step.is-active {
  display: block;
  animation: mai-ev-fade 0.28s ease;
}

@keyframes mai-ev-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mai-ev-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}

.mai-ev-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px auto 4px;
}
.mai-ev-count__btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #1e689f;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast);
}
.mai-ev-count__btn:hover {
  background: #96c400;
  color: #303b0a;
}
.mai-ev-count__btn:active {
  transform: scale(0.94);
}
.mai-ev-count__btn:focus-visible {
  outline: 2px solid #96c400;
  outline-offset: 2px;
}
.mai-ev-count input[name=count] {
  width: auto !important;
  text-align: center;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 22px;
  font-weight: 700;
  color: #3e5769;
  height: auto !important;
  padding: 0 40px !important;
}
.mai-ev-count__hint {
  text-align: center;
  font-size: 0.85rem;
  color: #303b0a;
  min-height: 1.2em;
  margin: 6px 0 14px;
}

.mai-ev-person {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 16px;
  box-shadow: 0 14px 34px rgba(62, 87, 105, 0.08);
}
.mai-ev-person__title {
  margin: 0 0 14px;
  color: #3e5769;
  font-size: 1rem;
  font-weight: 600;
}
.mai-ev-person__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 14px;
}
@media (max-width: 680px) {
  .mai-ev-person__row {
    grid-template-columns: 1fr;
  }
}

.mai-ev-field {
  display: block;
  margin-bottom: 12px;
}
.mai-ev-field:last-child {
  margin-bottom: 0;
}
.mai-ev-field > span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #3e5769;
  margin-bottom: 4px;
}

.mai-ev-person__row .mai-ev-field {
  margin-bottom: 0;
}

.mai-ev-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 4px 18px;
  margin-bottom: 16px;
}

.mai-ev-summary__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
  line-height: 1.4;
}
@media (max-width: 680px) {
  .mai-ev-summary__table {
    font-size: 16px;
  }
}
.mai-ev-summary__table tr + tr th,
.mai-ev-summary__table tr + tr td {
  border-top: 1px solid var(--line);
}
.mai-ev-summary__table th {
  text-align: left;
  color: rgba(62, 87, 105, 0.7);
  font-weight: 600;
  padding: 9px 12px 9px 0;
  width: 40%;
  vertical-align: top;
}
.mai-ev-summary__table td {
  padding: 9px 0;
  color: #14252b;
  text-align: right;
  vertical-align: top;
}

.mai-ev-waitlist-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #b45309;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.mai-ev-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #14252b;
  cursor: pointer;
}
.mai-ev-check input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  accent-color: #96c400;
  cursor: pointer;
}
@media (max-width: 680px) {
  .mai-ev-check input {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}
.mai-ev-check a {
  color: #3e5769;
  text-decoration: underline;
}

.mai-ev-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: sticky;
  bottom: 0;
  margin-top: 20px;
  padding: 16px 0;
  background: #fffaf2;
  border-top: 1px solid rgba(62, 87, 105, 0.1);
}
.mai-ev-nav button {
  cursor: pointer;
}

.mai-ev-btn-back {
  border: none;
  background: #eef1f3;
  color: #3e5769;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s;
}
.mai-ev-btn-back:hover {
  background: #e2e7ea;
}
.mai-ev-btn-back:focus-visible {
  outline: 2px solid #3e5769;
  outline-offset: 2px;
}

.mai-ev-modal .btn-narrow {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 480px) {
  .mai-ev-nav {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
  }
  .mai-ev-nav .btn-narrow,
  .mai-ev-nav .mai-ev-btn-back {
    width: 100%;
    font-size: 17px;
    padding: 14px 20px;
  }
}
.mai-ev-open-form,
.mai-ev-card__btn {
  cursor: pointer;
}

.mai-ev-form .mai-ev-submit:disabled {
  opacity: 0.6;
  cursor: progress;
}

.mai-ev-result {
  text-align: center;
  padding: 24px 0 40px;
}
.mai-ev-result__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #96c400;
  color: #fff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mai-ev-result h3 {
  color: #1e689f;
  margin: 0 0 25px;
}
.mai-ev-result__contact {
  margin-top: 14px;
  font-size: 0.9rem;
}
.mai-ev-result__contact a {
  color: #3e5769;
}

@media (prefers-reduced-motion: reduce) {
  .mai-ev-modal__overlay,
  .mai-ev-modal__dialog,
  .mai-ev-step.is-active,
  .mai-ev-progress li::before {
    animation: none !important;
  }
  * {
    scroll-behavior: auto !important;
  }
}
.mai-ev-card__badge--request {
  background: #133b4d;
}

.mai-ev-cta__hint {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
  color: #5a6a72;
  text-align: center;
}

.mai-ev-detail__facts .mai-ev-fact--date,
.mai-ev-detail__facts .mai-ev-fact--request {
  background: #c5e6f5;
  color: #3e5769;
}

.mai-ev-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.mai-ev-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.mai-ev-tag--cat {
  background: #133b4d;
  color: #fff;
}
.mai-ev-tag--label {
  background: #eef1f3;
  color: #14252b;
}

.mai-ev-section {
  margin: 28px 0 0;
}
.mai-ev-section__title {
  margin: 0 0 14px;
}

.mai-ev-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mai-ev-schedule__item {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid #e2e7ea;
}
.mai-ev-schedule__item:first-child {
  border-top: none;
}
.mai-ev-schedule__when {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mai-ev-schedule__date {
  font-weight: 600;
  color: #133b4d;
}
.mai-ev-schedule__time {
  font-size: 14px;
  color: #5a6a72;
}
.mai-ev-schedule__body {
  flex: 1 1 auto;
}
.mai-ev-schedule__title {
  display: block;
  font-weight: 600;
  color: #14252b;
}
.mai-ev-schedule__desc {
  margin: 4px 0 0;
  font-size: 14px;
  color: #4a5a62;
}
.mai-ev-schedule__speaker {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: #133b4d;
  font-weight: 600;
}

@media (max-width: 600px) {
  .mai-ev-schedule__item {
    flex-direction: column;
    gap: 4px;
  }
  .mai-ev-schedule__when {
    flex-basis: auto;
    flex-direction: row;
    gap: 10px;
  }
}
.mai-ev-speakers__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mai-ev-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mai-ev-speaker__photo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.mai-ev-speaker__meta {
  display: flex;
  flex-direction: column;
}
.mai-ev-speaker__name {
  font-weight: 600;
  font-size: 18px;
  color: #133b4d;
  text-decoration: none;
}
.mai-ev-speaker__name:hover {
  text-decoration: underline;
}
.mai-ev-speaker__role {
  font-size: 13px;
  color: #5a6a72;
}

.mai-ev-partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.mai-ev-partner img {
  max-height: 56px;
  width: auto;
  display: block;
}
.mai-ev-partner__name {
  font-weight: 600;
  color: #14252b;
}

.mai-ev-detail__foot {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #e2e7ea;
}

.mai-ev-organizer {
  margin: 0 0 8px;
  font-size: 15px;
  color: #3e5769;
}
.mai-ev-organizer__label {
  color: #3e5769;
  font-weight: 600;
}

.mai-ev-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}
.mai-ev-calendar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #133b4d;
  border-radius: 8px;
  color: #133b4d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mai-ev-calendar__link:hover {
  background: #133b4d;
  color: #fff;
}
