/* Minimal styles for events */
.sea-event-list { list-style:none; padding:0; margin:0; display:grid; gap:1.25rem; }
.sea-event-item { display:flex; gap:1rem; border:1px solid #eee; padding:1rem; border-radius:8px; background:#fff; }
.sea-event-thumb img { width:180px; height:auto; border-radius:6px; display:block; }
.sea-event-meta { flex:1; }
.sea-event-title { margin:0 0 .25rem 0; }
.sea-event-datetime { color:#333; margin-bottom:.25rem; }
.sea-event-venue, .sea-event-address, .sea-event-cost { color:#555; margin:.15rem 0; }
.sea-event-excerpt { color:#444; margin-top:.5rem; }
.sea-btn {
  display:inline-block;
  padding:.5rem .85rem;
  border-radius:6px;
  background:#FFFBD5;   /* pale cream background */
  color:#333;           /* dark text for readability */
  text-decoration:none;
}
.sea-btn:hover {
  background:#f2eec2;   /* slightly darker cream */
  color:#000;
}
.sea-featured-event { display:grid; gap:1rem; border:1px solid #eee; padding:1rem; border-radius:8px; background:#fff; }
.sea-featured-img img { width:100%; height:auto; border-radius:6px; display:block; }

/* single-event styling */
.sea-single-event {
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  max-width: 800px;
  margin: 2rem auto;
}
.sea-event-header {
  margin-bottom: 1.5rem;
}
.sea-event-title {
  margin: 1rem 0;
}
.sea-event-content {
  margin-top: 1rem;
}

.sea-event-mapwrap {
  margin: .5rem 0;
  max-width: 400px;   /* keeps map compact */
}
.sea-event-mapwrap iframe {
  display: block;
  width: 100%;
  height: 150px;
}

.sea-btn-info {
    display:inline-block;
    padding:10px 15px;
    margin-right:10px;
    border-radius:3px;
    font-family:'Lato', Helvetica, Arial, sans-serif;
    font-size:16px;
    text-decoration:none;
    background:#E14D43;
    color:#fff !important;
}
.sea-btn-info:hover { background:#DD7873; }

.sea-btn-register {
    display:inline-block;
    padding:10px 15px;
    border-radius:3px;
    font-family:'Lato', Helvetica, Arial, sans-serif;
    font-size:16px;
    text-decoration:none;
    background:#23282A;
    color:#fff !important;
}
.sea-btn-register:hover { background:#6b6b6b; }

