/* Base Styles */
:root {
  --primary-color: #1e2a45;
  --primary-light: #384e7e;
  --primary-dark: #131b2c;
  --secondary-color: #e0e5f2;
  --accent-color: #f1c40f;
  --accent-light: #f9e79f;
  --accent-dark: #d4ac0d;
  --text-color: #333;
  --text-light: #6c7a89;
  --text-dark: #222;
  --text-white: #fff;
  --background-color: #fff;
  --background-alt: #f8f9fa;
  --background-dark: #2c3e50;
  --border-color: #eaeaea;
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  --glassmorphism: rgba(255, 255, 255, 0.1);
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0;
  line-height: 1.2;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

/* Utility Classes */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.is-two-thirds {
  width: 66.6666%;
  margin: 0 auto;
}

/* Button Styles */
.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  color: var(--text-white);
  text-decoration: none;
}

.button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.button.is-primary {
  background-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-light);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-outlined:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.button.is-outlined.is-light {
  border-color: var(--text-white);
  color: var(--text-white);
}

.button.is-outlined.is-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.button.is-large {
  font-size: 1.25rem;
  padding: 14px 30px;
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 12px 26px;
}

.button.is-small {
  font-size: 0.875rem;
  padding: 8px 16px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.is-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-item {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-item.active {
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-end {
  display: flex;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  height: 3.25rem;
  width: 3.25rem;
  position: relative;
  margin-left: auto;
}

.navbar-burger span {
  background-color: var(--text-color);
  display: block;
  height: 2px;
  position: absolute;
  width: 20px;
  left: calc(50% - 10px);
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 7px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 5px);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero.is-fullheight {
  min-height: 100vh;
}

.hero.is-medium {
  min-height: 70vh;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.5s ease-out;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-body {
  z-index: 2;
  width: 100%;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-footer {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
}

.arrow-down {
  display: inline-block;
  cursor: pointer;
}

.arrow-down span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--text-white);
  border-right: 2px solid var(--text-white);
  transform: rotate(45deg);
  animation: arrowBounce 2s infinite;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Parallax Sections */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.insights-background,
.instructors-background,
.scenes-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateZ(-5px) scale(1.5);
}

.insights-background::after,
.instructors-background::after,
.scenes-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

/* Title Styles */
.title {
  margin-bottom: 0.75rem;
}

.title.is-1 {
  font-size: 3rem;
  letter-spacing: -0.5px;
}

.title.is-2 {
  font-size: 2.5rem;
  letter-spacing: -0.25px;
}

.title.is-3 {
  font-size: 2rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

.subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
}

.subtitle.is-3 {
  font-size: 1.75rem;
}

/* Card Styles */
.card {
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  transition: transform 0.5s ease;
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.card:hover .image-container img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Columns Layout */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

.column {
  flex: 1;
  padding: 0.75rem;
}

.column.is-one-third {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.column.is-half {
  flex: 0 0 50%;
  max-width: 50%;
}

.column.is-two-thirds {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.column.is-full {
  flex: 0 0 100%;
  max-width: 100%;
}

.columns.is-centered {
  justify-content: center;
}

.columns.is-multiline {
  flex-wrap: wrap;
}

.columns.is-vcentered {
  align-items: center;
}

/* Stat Widgets */
.stat-widget {
  padding: 2rem;
  text-align: center;
  background-color: var(--background-alt);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
}

.stat-widget .title {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-widget .subtitle {
  color: var(--text-light);
  font-weight: 400;
}

/* Insights Section */
.insights-section {
  position: relative;
  color: var(--text-white);
  padding: 5rem 0;
}

.insights-section .title,
.insights-section .subtitle {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.insight-card {
  background-color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.insight-card .title {
  color: var(--text-dark);
  text-shadow: none;
}

.insight-card p {
  color: var(--text-color);
}

.insight-card .card-image {
  height: 240px;
}

.insight-card .image-container img {
  height: 100%;
}

/* Resource Cards */
.resource-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-card .title {
  margin-bottom: 1rem;
}

.resource-card .buttons {
  margin-top: auto;
  justify-content: center;
}

/* Instructor Section */
.instructors-section {
  position: relative;
  color: var(--text-white);
  padding: 5rem 0;
}

.instructors-section .title,
.instructors-section h2 {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.instructor-card {
  background-color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructor-card .card-image {
  height: 300px;
}

.instructor-card .image-container {
  height: 100%;
}

.instructor-card .image-container img {
  height: 100%;
}

.instructor-card .title {
  color: var(--text-dark);
  text-shadow: none;
  margin-bottom: 0.25rem;
}

.instructor-card .subtitle {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.instructor-card p {
  color: var(--text-color);
}

/* Press Section */
.press-slider-container {
  position: relative;
  padding: 0 40px;
  margin-bottom: 2rem;
}

.press-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.press-slider::-webkit-scrollbar {
  display: none;
}

.press-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 10px;
}

.press-card {
  text-align: center;
  height: 100%;
}

.press-card .card-image {
  height: 220px;
}

.press-card .quote {
  font-style: italic;
  margin: 1rem 0;
  color: var(--text-color);
}

.press-card .date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.slider-controls button {
  margin: 0 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.slider-controls button:hover {
  background-color: var(--primary-light);
}

/* Behind the Scenes */
.scenes-section {
  position: relative;
  color: var(--text-white);
  padding: 5rem 0;
}

.scenes-section .title,
.scenes-section h2 {
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.gallery-container {
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-caption h3,
.gallery-caption p {
  color: var(--text-white);
  margin: 0;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Contact Section */
.contact-section {
  background-color: var(--background-alt);
}

.contact-card {
  background-color: var(--background-color);
  box-shadow: var(--card-shadow);
  border-radius: 8px;
  overflow: hidden;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.social-links .title {
  margin-bottom: 1rem;
}

.social-links .buttons {
  flex-wrap: wrap;
}

.social-links .button {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

/* Forms */
.field {
  margin-bottom: 1.5rem;
}

.label {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.control {
  position: relative;
  width: 100%;
}

.input, 
.textarea, 
.select select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input:focus, 
.textarea:focus, 
.select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 42, 69, 0.1);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.select {
  position: relative;
  display: block;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2rem;
  cursor: pointer;
}

.select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--text-light);
  pointer-events: none;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 4rem 0;
}

.footer .title {
  color: var(--text-white);
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

/* Success Page */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.success-message {
  max-width: 600px;
  margin: 0 auto;
}

.success-details {
  background-color: var(--background-alt);
  border-radius: 8px;
  padding: 2rem;
}

.success-steps {
  list-style: none;
  padding: 0;
}

.success-steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

/* Privacy and Terms Pages */
.privacy-section,
.terms-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section-content,
.terms-section-content {
  margin-bottom: 3rem;
}

/* About Page Styles */
.objectives-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.objectives-list li {
  margin-bottom: 1.5rem;
  padding-left: 30px;
  position: relative;
}

.objectives-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-weight: bold;
}

.timeline-container {
  margin: 3rem 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  height: 100%;
  width: 2px;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--background-color);
}

.timeline-content {
  padding-left: 0.5rem;
}

.organizer-card {
  text-align: center;
}

.cta-section {
  background-color: var(--background-alt);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin-top: 4rem;
}

/* Contact Page Styles */
.contact-full-card {
  margin-bottom: 3rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.location-card {
  margin-bottom: 3rem;
}

.map-container {
  height: 400px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Read More Links */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 1rem;
  position: relative;
  padding-right: 1.5rem;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-light);
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: white;
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 1rem 0 0;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }
  
  .hero-body {
    padding: 3rem 1.5rem;
  }
  
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 1rem 0;
    flex-direction: column;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    padding: 0.75rem 1.5rem;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .column.is-one-third,
  .column.is-half,
  .column.is-two-thirds {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .press-slide {
    flex: 0 0 100%;
  }
  
  .contact-card .columns {
    flex-direction: column;
  }
  
  .social-links {
    margin-bottom: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin: 0 0 1rem 0;
    text-align: center;
  }
  
  .footer .columns {
    flex-direction: column;
  }
  
  .footer .column {
    margin-bottom: 2rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .column.is-one-third {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .press-slide {
    flex: 0 0 50%;
  }
}

@media screen and (min-width: 1024px) {
  .press-slide {
    flex: 0 0 33.333%;
  }
}

.title:not(.is-spaced)+.subtitle {
    margin-top: 0 !important;
}