@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Mea+Culpa&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&family=Noto+Serif+Display:ital,wght@0,400;0,600;1,400&family=Roboto+Condensed:wght@300;400;700&display=swap');

:root {
  --color-primary: #8b8889;
  --color-countdown-value: #3a5542;
  --color-countdown-label: #9daaa1;
  --color-text-dark: #1f3a42;
  --color-quote: #4f455c;
  --color-quote-caption: #8b8394;
  --color-bg-light: #f4f4f4;
  --color-white: #ffffff;
  --font-script: 'Mea Culpa', cursive;
  --font-title: 'Aleo', serif;
  --font-serif: 'Merriweather', serif;
  --font-display: 'Noto Serif Display', serif;
  --font-condensed: 'Roboto Condensed', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  background: var(--color-white);
  color: var(--color-text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.preloader-active {
  overflow: hidden;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.2s ease;
  overflow: hidden;
}

.envelope-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  overflow: hidden;
}

.envelope-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.envelope-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.click-to-open {
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  pointer-events: none;
  animation: pulse-glow 2s infinite ease-in-out;
  transform: translateY(-120px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.75;
    transform: translateY(-120px) scale(0.97);
  }

  50% {
    opacity: 1;
    transform: translateY(-120px) scale(1.03);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  }
}

#preloader.opened {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Zarf Açılış Videosu */
.seal-video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.envelope-wrapper.playing-video .seal-video-player {
  opacity: 1;
}

.envelope-wrapper.playing-video .envelope-img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Masaüstünde tüm siteyi gizle, sadece mobil emülasyonda (F12) görünsün */
@media (min-width: 768px) {
  body {
    display: none !important;
  }
}

/* --- Music Control (ref: w-12 h-12, top-5 left-5, bg #8b8889) --- */
.music-control {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background: var(--color-primary);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.music-control:hover {
  transform: scale(1.06);
}

.music-control i {
  color: #fff;
  font-size: 1.1rem;
}

.music-control.playing {
  animation: rotate-vinyl 4s linear infinite;
}

@keyframes rotate-vinyl {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- Main Layout --- */
.invitation-main {
  opacity: 0;
  transition: opacity 1.2s ease;
}

body.content-visible .invitation-main {
  opacity: 1;
}

.screen {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* --- Hero (ref: startups-screen-2) --- */
.hero-screen {
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-names {
  font-family: var(--font-script);
  font-size: 65px;
  font-weight: 500;
  color: #464646;
  line-height: 1.25;
}

.hero-ve {
  font-size: 0.55em;
  font-style: italic;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-primary);
  margin-top: -8px;
}

/* Elegant Date (ref: grid-cols-[90px_auto_90px] gap-4) */
.elegant-date {
  width: 100%;
  padding: 8px 16px 16px;
}

.elegant-date-row {
  display: grid;
  grid-template-columns: 90px auto 90px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 28px;
  color: #464646;
}

.elegant-date-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.elegant-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.8;
}

.elegant-month {
  font-size: 15.4px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
}

.elegant-year {
  font-size: 15.4px;
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: 400;
}

.elegant-day {
  font-size: 67.2px;
  line-height: 0.85;
  font-weight: 400;
}

.elegant-weekday {
  font-family: var(--font-display);
  font-size: 18.2px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.elegant-flourish {
  font-size: 10px;
  opacity: 0.7;
}

/* Reminder (ref: text-sm px-7 py-3 rounded-full) */
.btn-reminder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
  padding: 12px 28px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: -8px;
}

.btn-reminder:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.btn-reminder i {
  font-size: 14px;
}

/* --- Scroll Hint Indicator --- */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  cursor: pointer;
  user-select: none;
}

.scroll-hint.fade-out {
  opacity: 0 !important;
  transform: translateY(15px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
  pointer-events: none;
}

.scroll-hint-text {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #000000;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9), 0 0 8px rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, color 0.3s ease;
}

.scroll-hint:hover .scroll-hint-text {
  color: #000000;
  transform: translateY(2px);
}

.scroll-hint-line {
  position: relative;
  width: 2px;
  height: 44px;
  background: rgba(139, 136, 137, 0.35);
  overflow: hidden;
  border-radius: 1px;
}

.scroll-hint-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #000000;
  animation: scroll-line-anim 2.2s infinite cubic-bezier(0.15, 0.85, 0.35, 1);
}

@keyframes scroll-line-anim {
  0% {
    top: -50%;
  }

  100% {
    top: 100%;
  }
}

/* --- Countdown (ref: height 240px bg, title 44px, values 17px) --- */
.countdown-screen {
  background: #fff;
  padding: 0;
  min-height: 285px;
}

.countdown-bg {
  position: absolute;
  inset: 0;
  height: 240px;
  background: url('../../image/model16/countdown-bg.jpg') center / contain no-repeat;
  pointer-events: none;
}

.countdown-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.countdown-heading {
  font-family: var(--font-script);
  font-size: 44px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}

.countdown-subtitle {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  margin-bottom: 16px;
}

.countdown-timer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0 2px;
}

.timer-value {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-countdown-value);
  line-height: 1;
}

.timer-label {
  font-family: var(--font-elegant);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-countdown-label);
  text-transform: uppercase;
  margin-top: 2px;
}

.timer-sep {
  width: 1px;
  height: 24px;
  margin-top: 2px;
  background: var(--color-primary);
  opacity: 0.35;
}

/* --- Section Title (ref: 35px Mea Culpa) --- */
.section-title {
  font-family: var(--font-script);
  font-size: 35px;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  line-height: 1;
  margin-bottom: 4px;
}

/* --- Events (ref: 330x300 cards, title 28px Roboto Condensed) --- */
.events-screen {
  background: linear-gradient(0deg, #f4f4f4 0%, #ffffff 100%);
  padding: 16px;
  color: var(--color-text-dark);
}

.events-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 950px;
  margin: 0 auto 40px;
}

.event-card {
  position: relative;
  width: 330px;
  height: 300px;
  overflow: hidden;
  border: 5px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.event-card-bg {
  position: absolute;
  inset: 0;
  background: url('../../image/model16/event-card.jpeg') center / cover no-repeat;
  z-index: 0;
}

.event-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  /* Görselin üzerindeki beyaz overlay katmanı */
  z-index: 1;
}

.event-card-content {
  position: relative;
  z-index: 1;
  padding: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-name {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.event-date {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: 4px;
}

.event-location-name {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.5;
  max-width: 300px;
  margin: 12px auto 4px;
}

.event-address-detail {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto 12px;
  padding: 0 8px;
}

.event-card-map {
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.event-card-map .event-map {
  width: 100%;
  height: 100%;
}

.event-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 20px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.btn-map:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-map i {
  font-size: 16px;
}

/* --- Ornament (ref: width 30%) --- */
.ornament-screen {
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
  padding: 16px 0;
}

.ornament-img {
  width: 30%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* --- Gallery (ref: title 35px, aspect-square, gap-3, rounded-lg) --- */
.gallery-screen {
  background: #fff;
  padding: 0 0 16px;
  color: var(--color-text-dark);
}

.gallery-inner {
  width: 100%;
}

.gallery-screen .section-title {
  margin-top: 20px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 12px;
  width: 100%;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Memory Album (ref: max-w 700px, white card, title 40px) --- */
.memory-album {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(100% - 24px);
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(139, 136, 137, 0.125);
  box-shadow: rgba(17, 24, 39, 0.08) 0 22px 50px, rgba(139, 136, 137, 0.03) 0 0 0 1px inset;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.memory-album:hover {
  transform: translateY(-1px);
}

.memory-album-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 136, 137, 0.07);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: rgba(139, 136, 137, 0.07) 0 12px 28px;
}

.memory-album-title {
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 24px;
}

.memory-album-desc {
  font-family: var(--font-elegant);
  font-size: 15px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 560px;
}

.memory-album-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.memory-album-line {
  width: 40px;
  height: 1px;
  background: rgba(139, 136, 137, 0.25);
}

.memory-album-cta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(139, 136, 137, 0.8);
  white-space: nowrap;
}

.memory-album-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 136, 137, 0.063);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 16px;
}

/* --- Weather Card --- */
.weather-card {
  width: calc(100% - 24px);
  max-width: 720px;
  margin: 40px auto 0;
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(139, 136, 137, 0.333);
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(116, 80, 44, 0.1);
  overflow: hidden;
}

.weather-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(139, 136, 137, 0.4);
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-primary);
}

.weather-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.weather-title {
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}

.weather-date {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 8px;
}

.weather-location-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.weather-city {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--color-primary);
}

.weather-condition {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-primary);
}

.weather-temp {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 16px;
}

.weather-range-box {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(139, 136, 137, 0.267);
  background: rgba(255, 255, 255, 0.45);
}

.weather-range {
  font-family: var(--font-elegant);
  font-size: 15px;
  color: var(--color-primary);
  margin: 0;
}

.weather-note {
  font-family: var(--font-elegant);
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 16px;
}

/* --- Quote (ref: 28px Cormorant, caption 15px uppercase) --- */
.quote-screen {
  background: linear-gradient(181deg, #f4f4f4 0%, #ffffff 100%);
  padding: 16px 0;
}

.quote-inner {
  width: 100%;
  max-width: 672px;
  padding: 0 16px;
  text-align: center;
}

.quote-ornament {
  margin: 0 auto 20px;
}

.quote-text {
  font-family: var(--font-elegant);
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-quote);
  line-height: 1.5;
  max-width: 768px;
  margin: 0 auto 24px;
  border: none;
  padding: 0;
}

.quote-caption {
  font-family: var(--font-elegant);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-quote-caption);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

/* --- Thanks (ref: names 52px, date 18px) --- */
.thanks-screen {
  background: linear-gradient(0deg, #ffffff 0%, #f4f4f4 100%);
  padding: 40px 16px 64px;
}

.thanks-inner {
  text-align: center;
  width: 100%;
  max-width: 520px;
  margin: 40px auto 0;
}

.thanks-names {
  font-family: var(--font-script);
  font-size: 52px;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.05;
}

.thanks-date {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.thanks-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  padding: 0 16px;
}

.thanks-credit-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 136, 137, 0.35), transparent);
}

.thanks-credit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.thanks-credit-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(139, 136, 137, 0.65);
}

.thanks-credit-brand {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.thanks-credit-brand:hover {
  opacity: 0.8;
}

/* --- Scroll Animations --- */
.animated-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.animated-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .animated-element:nth-child(1) {
  transition-delay: 0.1s;
}

.hero-content .animated-element:nth-child(2) {
  transition-delay: 0.22s;
}

.hero-content .animated-element:nth-child(3) {
  transition-delay: 0.34s;
}

.hero-content .animated-element:nth-child(4) {
  transition-delay: 0.46s;
}

/* --- Responsive (ref: md breakpoints) --- */
@media (min-width: 768px) {
  .countdown-screen {
    min-height: 380px;
  }

  .countdown-content {
    min-height: 380px;
    padding: 28px 20px;
  }

  .countdown-subtitle {
    margin-top: 12px;
    letter-spacing: 0.32em;
  }

  .countdown-timer {
    max-width: 460px;
    margin-top: 28px;
  }

  .timer-label {
    margin-top: 8px;
  }

  .timer-sep {
    height: 40px;
    margin: 4px 8px 0;
  }

  .countdown-bg {
    background-size: cover;
  }

  .events-screen {
    padding: 80px 16px;
  }

  .events-screen .section-title {
    margin-bottom: 28px;
  }

  .events-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .event-card {
    width: 450px;
  }

  .event-card-map {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .memory-album {
    max-width: 720px;
    padding: 24px 16px;
  }

  .memory-album-icon {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .memory-album-cta {
    font-size: 12px;
  }

  .memory-album-line {
    width: 56px;
  }

  .weather-card {
    padding: 40px;
  }

  .weather-icon-wrap {
    width: 80px;
    height: 80px;
  }

  .weather-icon-wrap svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .event-card-map {
    margin-top: 0;
  }
}