/* The Links Club - Elegant Heritage Design */

/* Local Fonts */
@font-face {
  font-family: 'Abel';
  src: url('fonts/Abel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #0F1741;
  --pale-blue: #CFE5E2;
  --burgundy: #6E1E18;
  --light-pink: #D0A7BB;
  --white: #ffffff;
  --cream: #faf8f5;
  --gray-dark: #333333;
  --gray-light: #666666;
  --transition-speed: 0.4s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gray-dark);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* All headings use Abel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Abel', sans-serif;
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.splash-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  height: 280px;
  width: auto;
  margin-bottom: 3em;
  opacity: 0;
  animation: logoFadeIn 1.5s ease-out 0.2s forwards;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.enter-button {
  background-color: transparent;
  color: var(--white);
  padding: 0.9em 2.5em;
  font-size: 1.1em;
  font-family: 'Abel', sans-serif;
  font-weight: 400;
  border: 2px solid var(--white);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0;
  text-transform: uppercase;
  display: block;
  margin-top: 1em;
}

.enter-button.visible {
  animation: buttonFadeIn 1s ease-out forwards;
}

.enter-button:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.enter-button:active {
  transform: translateY(0);
}

@keyframes splashFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes buttonFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content */
.main-content {
  opacity: 1;
  transition: opacity 0.6s ease-in;
  min-height: 100vh;
}

.main-content.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: all var(--transition-speed);
}

a:hover {
  color: var(--navy);
}

/* Landing Page */
.landing-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}

.landing-header {
  padding: 3em 2em 2em 2em;
  text-align: center;
}

.landing-logo {
  height: 180px;
  width: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.landing-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
  text-align: center;
}

.landing-title {
  font-family: 'Abel', sans-serif;
  font-size: 5em;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 3em;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.landing-links {
  display: flex;
  gap: 3em;
  justify-content: center;
  flex-wrap: wrap;
}

.landing-link {
  font-family: 'Abel', sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  color: var(--white);
  padding: 1em 3em;
  border: 2px solid var(--white);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.landing-link:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.landing-footer {
  background-color: transparent;
  color: var(--white);
  padding: 2em;
  text-align: center;
  font-size: 0.9em;
}

.landing-footer p {
  margin: 0.5em 0;
  color: var(--pale-blue);
}

.landing-footer a {
  color: var(--light-pink);
  font-weight: 400;
}

.landing-footer a:hover {
  color: var(--pale-blue);
  text-decoration: underline;
}

/* Landing History Section */
.landing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4em 2em;
  width: 100%;
}

.landing-history {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3em;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.landing-section-title {
  font-family: 'Abel', sans-serif;
  font-size: 2.8em;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5em;
}

.landing-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--light-pink), var(--pale-blue));
}

.landing-history .history-content p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--pale-blue);
  text-align: justify;
  margin-bottom: 1.5em;
}

.landing-history .history-content p:last-child {
  margin-bottom: 0;
}

.landing-history .history-image {
  margin: 2.5em auto;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.landing-history .image-caption {
  margin-top: 1em;
  font-size: 1em;
  font-style: italic;
  color: var(--pale-blue);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.9;
}

/* Header */
header {
  background-color: var(--white);
  padding: 2em 1em;
  text-align: center;
  border-bottom: 1px solid var(--pale-blue);
}

header .crest {
  height: 100px;
  width: auto;
  margin: 0 auto;
  display: block;
}

/* Top Navigation */
.top-nav {
  background: transparent;
  padding: 1.5em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border: none;
  box-shadow: none;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-left {
  text-align: left;
}

.nav-right {
  text-align: right;
}

.nav-center {
  flex: 0 0 auto;
}

.nav-crest {
  height: 110px;
  width: auto;
  display: block;
  transition: transform var(--transition-speed);
}

.nav-crest:hover {
  transform: scale(1.05);
}

.top-nav a {
  color: var(--white);
  font-family: 'Abel', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.top-nav a:hover {
  color: var(--pale-blue);
  text-decoration: none;
}

.top-nav a.active {
  color: var(--pale-blue);
  border-bottom: 2px solid var(--pale-blue);
  padding-bottom: 0.3em;
}

/* Navigation (for other pages) */
nav {
  background: var(--navy);
  padding: 1.2em 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  flex-wrap: wrap;
}

nav li {
  margin: 0;
}

nav a {
  color: var(--white);
  font-family: 'Abel', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 0.5em 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--light-pink);
  transition: width var(--transition-speed);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover {
  color: var(--pale-blue);
  text-decoration: none;
}

/* Home Hero Section */
.home-hero {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('images/links-old-building.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4em 2em;
  padding-top: 8em;
}

.centenary-hero {
  background-image: url('images/Assembly-Hall-Church-House.webp');
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 65, 0.88);
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-title {
  font-family: 'Abel', sans-serif;
  font-size: 5em;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  margin: 0 0 0.5em 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.home-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3em;
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section with Diagonal Stripe (for other pages) */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--burgundy) 0%,
    var(--burgundy) 25%,
    var(--navy) 25%,
    var(--navy) 50%,
    var(--burgundy) 50%,
    var(--burgundy) 75%,
    var(--navy) 75%,
    var(--navy) 100%
  );
  background-size: 80px 80px;
  color: var(--white);
  padding: 8em 2em;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 65, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Abel', sans-serif;
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4em 2em;
}

/* Section Titles */
.section-title {
  font-family: 'Abel', sans-serif;
  font-size: 2.8em;
  font-weight: 600;
  margin-bottom: 1em;
  color: var(--navy);
  text-align: center;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--burgundy), var(--light-pink));
}

/* About Section */
.about {
  background-color: var(--white);
  padding: 3em;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 3em;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.about p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--gray-dark);
  text-align: justify;
  margin-bottom: 1.5em;
}

.about p:last-child {
  margin-bottom: 0;
}

.event-cta {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 0;
}

.about .event-cta {
  text-align: center;
}

/* History Content Layout */
.history-content {
  display: flex;
  flex-direction: column;
}

.history-content p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--gray-dark);
  text-align: justify;
  margin-bottom: 1.5em;
}

.history-content p:last-child {
  margin-bottom: 0;
}

.event-timings {
  list-style: none;
  padding-left: 0;
  margin: 1em 0 1.5em 0;
}

.event-timings li {
  padding: 0.4em 0;
  border-bottom: 1px solid var(--pale-blue);
  font-size: 1.05em;
  line-height: 1.5;
}

.event-timings li:last-child {
  border-bottom: none;
}

.event-timings strong {
  display: inline-block;
  min-width: 5.5em;
  margin-right: 0.75em;
  color: var(--navy);
}

.history-image {
  margin: 2.5em auto;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.building-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  display: block;
}

.image-caption {
  margin-top: 1em;
  font-size: 1em;
  font-style: italic;
  color: var(--gray-light);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

/* Activities Section */
.activities {
  background-color: var(--white);
  padding: 3em;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.activities p {
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--gray-dark);
}

/* Member List */
.member-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3em;
  margin-top: 2em;
}

.member {
  background-color: var(--white);
  padding: 2.5em;
  border-top: 4px solid var(--pale-blue);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.member h3 {
  font-family: 'Abel', sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.8em;
  letter-spacing: 0.5px;
}

.member-name-title {
  display: block;
  font-size: 1.1em;
  margin-bottom: 0.75em;
  padding-left: 1em;
  border-left: 3px solid var(--navy);
  line-height: 1.6;
  color: var(--navy);
}

.member-name-title strong {
  display: block;
  font-family: 'Abel', sans-serif;
  font-weight: 600;
  color: var(--burgundy);
}

.member em {
  display: block;
  font-style: italic;
  color: var(--navy);
  font-size: 1.1em;
  margin-bottom: 1em;
  padding-left: 1em;
  border-left: 3px solid var(--light-pink);
  line-height: 1.6;
}

.member p {
  font-size: 1em;
  line-height: 1.8;
  color: var(--gray-dark);
}

.member-teaser {
  margin-bottom: 0.75em;
}

.member-full-content {
  display: none;
}

.member .read-more {
  display: inline-block;
  margin-top: 0.5em;
  font-family: 'Abel', sans-serif;
  font-size: 0.95em;
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid var(--burgundy);
  transition: color var(--transition-speed), border-color var(--transition-speed);
}

.member .read-more:hover {
  color: var(--navy);
  border-color: var(--navy);
  text-decoration: none;
}

/* Member modal */
.member-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  box-sizing: border-box;
}

.member-modal.is-open {
  display: flex;
}

.member-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 57, 0.6);
  cursor: pointer;
}

.member-modal-box {
  position: relative;
  background: var(--white);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.member-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25em 1.5em;
  border-bottom: 1px solid var(--pale-blue);
  flex-shrink: 0;
}

.member-modal-title {
  font-family: 'Abel', sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  color: var(--burgundy);
  margin: 0;
  padding-right: 2em;
}

.member-modal-close {
  position: absolute;
  top: 1em;
  right: 1em;
  background: none;
  border: none;
  font-size: 2em;
  line-height: 1;
  color: var(--gray-dark);
  cursor: pointer;
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  transition: color var(--transition-speed);
}

.member-modal-close:hover {
  color: var(--burgundy);
}

.member-modal-body {
  overflow-y: auto;
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.8;
  color: var(--gray-dark);
}

.member-modal-body p {
  margin-bottom: 1em;
}

.member-modal-body p:last-child {
  margin-bottom: 0;
}

/* Event Section */
.event {
  text-align: center;
  padding: 4em 2em;
  background: linear-gradient(135deg, var(--pale-blue) 0%, var(--white) 100%);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.event h2 {
  font-family: 'Abel', sans-serif;
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--navy);
  letter-spacing: 1px;
}

.event p {
  font-size: 1.25em;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto 2.5em auto;
  color: var(--gray-dark);
}

/* Button */
.button {
  display: inline-block;
  background-color: var(--burgundy);
  color: var(--white);
  padding: 1em 2.5em;
  font-size: 1.2em;
  font-family: 'Abel', sans-serif;
  font-weight: 600;
  border: 2px solid var(--burgundy);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed);
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(112, 22, 22, 0.3);
}

.button:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 16, 57, 0.4);
  text-decoration: none;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3em 2em;
  text-align: center;
  margin-top: 4em;
}

footer .crest {
  height: 80px;
  width: auto;
  margin: 0 auto 1.5em auto;
  display: block;
  opacity: 0.9;
}

footer p {
  font-size: 0.95em;
  margin: 0.5em 0;
  color: var(--pale-blue);
}

footer a {
  color: var(--light-pink);
  font-weight: 400;
}

footer a:hover {
  color: var(--pale-blue);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-nav {
    padding: 1em;
    flex-wrap: wrap;
  }

  .nav-crest {
    height: 80px;
  }

  .top-nav a {
    font-size: 0.9em;
  }

  .home-hero {
    min-height: 60vh;
    padding: 3em 1.5em;
  }

  .home-title {
    font-size: 3em;
    letter-spacing: 2px;
  }

  .landing-logo {
    height: 140px;
  }

  .landing-title {
    font-size: 3em;
    letter-spacing: 2px;
    margin-bottom: 2em;
  }

  .landing-links {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }

  .landing-link {
    font-size: 1.2em;
    padding: 0.9em 2.5em;
    width: 100%;
    max-width: 300px;
  }

  .landing-container {
    padding: 2.5em 1.5em;
  }

  .landing-history {
    padding: 2em 1.5em;
  }

  .landing-section-title {
    font-size: 2.2em;
  }

  .landing-history .history-image {
    margin: 2em auto;
  }

  .hero {
    padding: 5em 1.5em;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1.1em;
  }

  .section-title {
    font-size: 2.2em;
  }

  .container {
    padding: 2.5em 1.5em;
  }

  .about,
  .activities {
    padding: 2em 1.5em;
  }

  .history-image {
    margin: 2em auto;
    max-width: 100%;
  }

  .member-list {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .event h2 {
    font-size: 2.2em;
  }

  .event p {
    font-size: 1.1em;
  }

  nav ul {
    gap: 1.5em;
  }

  nav a {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 0.8em;
  }

  .nav-crest {
    height: 65px;
  }

  .top-nav a {
    font-size: 0.8em;
    letter-spacing: 0.5px;
  }

  .home-title {
    font-size: 2.5em;
    letter-spacing: 1px;
  }

  .landing-logo {
    height: 120px;
  }

  .landing-title {
    font-size: 2.5em;
    letter-spacing: 1px;
    margin-bottom: 1.5em;
  }

  .landing-link {
    font-size: 1.1em;
    padding: 0.8em 2em;
  }

  .landing-container {
    padding: 2em 1em;
  }

  .landing-history {
    padding: 1.5em 1em;
  }

  .landing-section-title {
    font-size: 1.8em;
  }

  .landing-history .history-content p {
    font-size: 1.05em;
  }

  .landing-container {
    padding: 2em 1em;
  }

  .landing-history {
    padding: 1.5em 1em;
  }

  .landing-section-title {
    font-size: 1.8em;
  }

  .landing-history .history-content p {
    font-size: 1.05em;
  }

  .home-title {
    font-size: 2.5em;
    letter-spacing: 2px;
  }

  .home-crest {
    height: 180px;
  }

  header .crest {
    height: 70px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .section-title {
    font-size: 1.8em;
  }

  .member {
    padding: 1.5em;
  }

  .member h3 {
    font-size: 1.5em;
  }

  .member-teaser {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    line-height: 1.6;
  }

  .event-timings li {
    padding: 0.6em 0;
    font-size: 1em;
  }

  .event-timings strong {
    display: block;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 0.25em;
  }

  .button {
    padding: 0.9em 2em;
    font-size: 1.1em;
  }
}

