/* Import Readex Pro font */
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

/* === GLOBAL STYLES === */
body,
body.wp-admin,
body.wp-core-ui,
html body {
  background-color: #FAFAFA !important;
}

.site,
.site-content,
main,
#main,
.main {
  background-color: #FAFAFA !important;
}

/* === SHARED TIPSHEET LAYOUT === */

/* Main wrapper - contains all tipsheet elements */
.tipsheet-main-wrapper,
.travel-tipsheet-wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  top: -48px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: #FAFAFA;
}

/* Header wrapper - FULL viewport width breakout */
.tipsheet-header-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}

/* Q&A Tipsheet gradient */
.tipsheet-main-wrapper .tipsheet-header-wrapper {
  background: linear-gradient(180deg, #0E7493 0%, #5EBDD9 100%) !important;
}

/* Travel Tipsheet gradient */
.travel-tipsheet-wrapper .tipsheet-header-wrapper {
  background: linear-gradient(180deg, #0E7493 0%, #AEE3C9 100%) !important;
}

/* Header container - centered content */
.tipsheet-header-container {
  max-width: 1132px;
  margin: 0 auto;
  padding: 16px;
}

@media (min-width: 768px) {
  .tipsheet-header-container {
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-header-container {
    padding: 32px 0;
  }
}

/* Header card */
.tipsheet-header-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  padding: 24px 20px;
  margin-bottom: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .tipsheet-header-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-header-card {
    padding: 40px;
  }
}

/* Updated spacing for mobile layout order */
.tipsheet-header-card > * + * {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .tipsheet-header-card > * + * {
    margin-top: 32px;
  }
}

.tipsheet-header-card .description:last-child {
  margin-bottom: 0;
}

/* === SHARED AUDIO PLAYER STYLES === */

.tipsheet-audio-player {
  background: #9527D1;
  border-radius: 50px;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  height: 44px;
  position: relative;
  transition: all 0.3s ease;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 480px) {
  .tipsheet-audio-player {
    padding: 8px 16px;
    gap: 8px;
  }
}

@media (min-width: 768px) {
  .tipsheet-audio-player {
    padding: 10px 20px;
    gap: 12px;
    height: 48px;
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-audio-player {
    padding: 12px 24px;
    gap: 16px;
    height: 56px;
    max-width: 820px;
  }
}

.tipsheet-audio-player.audio-loading {
  opacity: 0.7;
}

.tipsheet-audio-player.audio-playing {
  box-shadow: 0 0 20px rgba(149, 39, 209, 0.3);
}

.tipsheet-audio-player.audio-error {
  background: #dc3545;
}

.tipsheet-audio-player.audio-error .audio-label {
  color: rgba(255, 255, 255, 0.8);
}

.audio-label {
  color: white;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .audio-label {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .audio-label {
    font-size: 16px;
  }
}

.audio-play-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.audio-play-button img,
.audio-play-button svg {
  width: 36px;
  height: 36px;
  transition: opacity 0.2s ease;
}

.audio-play-button img {
  filter: brightness(0) invert(1);
}

.audio-play-button:hover {
  transform: scale(1.05);
}

/* Hide pause icons by default */
.pause-icon,
.pause-icon-fallback {
  display: none;
}

/* Hide play icon fallback by default */
.play-icon-fallback {
  display: none;
}

/* Show pause icons when audio is playing */
.tipsheet-audio-player.audio-playing .pause-icon,
.tipsheet-audio-player.audio-playing .pause-icon-fallback {
  display: block;
}

/* Hide play icons when audio is playing */
.tipsheet-audio-player.audio-playing .play-icon,
.tipsheet-audio-player.audio-playing .play-icon-fallback {
  display: none;
}

.tipsheet-audio-player:not(.audio-playing) .audio-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: audioPulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

.tipsheet-audio-player:not(.audio-playing) .audio-play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: audioPulse 1.8s ease-in-out infinite 0.6s;
  pointer-events: none;
}

@keyframes audioPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}

.audio-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: 40px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-width: 80px;
  margin: 0 8px;
}

@media (min-width: 480px) {
  .audio-waveform {
    gap: 1.5px;
    margin: 0 10px;
  }
}

@media (min-width: 768px) {
  .audio-waveform {
    gap: 2px;
    margin: 0 12px;
  }
}

@media (min-width: 1024px) {
  .audio-waveform {
    gap: 2px;
    margin: 0 16px;
  }
}

.audio-waveform:hover {
  opacity: 0.8;
}

.waveform-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  transition: all 0.15s ease;
  min-height: 4px;
  min-width: 1px;
  max-width: 2px;
  position: relative;
}

.waveform-bar:hover {
  background: rgba(255, 255, 255, 0.9);
}

.waveform-bar.animating {
  animation: waveformPulse 0.6s ease-in-out infinite alternate;
}

.waveform-bar.played {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
}

.tipsheet-audio-player.audio-loading .audio-play-button {
  animation: loadingPulse 1s ease-in-out infinite;
}

@keyframes waveformPulse {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1.1);
  }
}

@keyframes loadingPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.audio-time {
  color: white;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  min-width: 0;
  text-align: right;
}

@media (min-width: 480px) {
  .audio-time {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .audio-time {
    font-size: 14px;
  }
}

/* === MOBILE-ONLY HEADER IMAGE === */

/* Mobile: Show overview image in header */
.header-overview-image.mobile-only {
  display: block;
  width: 100%;
  margin: 0;
}

.header-overview-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-overview-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
}

/* Desktop: Hide mobile header image, show desktop overview */
@media (min-width: 768px) {
  .header-overview-image.mobile-only {
    display: none;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .tipsheet-main-wrapper .overview-image-column {
    display: none;
  }
  
  .tipsheet-audio-player {
    margin: 16px auto;
  }
  
  .tipsheet-header-card .description {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  
  /* Reduce spacing between elements on mobile */
  .tipsheet-header-card > * + * {
    margin-top: 16px;
  }
  
  /* Reduce header card bottom padding on mobile */
  .tipsheet-header-card {
    padding-bottom: 20px;
  }
}

/* === SHARED BREADCRUMBS STYLES === */

.tipsheet-breadcrumbs-container {
  margin-top: -40px;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 1132px;
  padding: 0 16px 20px 16px;
  left: 50%;
  transform: translateX(-50%);
}

/* Travel tipsheet specific breadcrumbs positioning fix */
.travel-tipsheet-wrapper .tipsheet-breadcrumbs-container {
  margin-top: -32px;
  z-index: 25;
}

@media (min-width: 768px) {
  .tipsheet-breadcrumbs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }
  
  .travel-tipsheet-wrapper .tipsheet-breadcrumbs-container {
    margin-top: -40px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-breadcrumbs-container {
    padding: 0;
  }
}

.breadcrumbs {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 12px;
}

@media (min-width: 425px) {
  .breadcrumbs {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .breadcrumbs {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 16px 28px;
    font-size: 16px;
  }
}

.breadcrumbs a {
  color: #AA2A94;
  text-decoration: none;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: inherit;
}

.breadcrumbs a:hover {
  color: #8A1A74;
}

.breadcrumb-separator {
  margin: 0 6px;
  display: flex;
  align-items: center;
  opacity: 0.6;
}

@media (min-width: 425px) {
  .breadcrumb-separator {
    margin: 0 8px;
  }
}

@media (min-width: 768px) {
  .breadcrumb-separator {
    margin: 0 10px;
  }
}

.breadcrumb-separator img {
  width: 12px;
  height: 12px;
  opacity: 0.8;
}

@media (min-width: 425px) {
  .breadcrumb-separator img {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 768px) {
  .breadcrumb-separator img {
    width: 16px;
    height: 16px;
  }
}

/* Responsive category names in breadcrumbs */
.breadcrumb-category-full {
  display: none;
}

.breadcrumb-category-mobile {
  display: inline;
}

@media (min-width: 768px) {
  .breadcrumb-category-full {
    display: inline;
  }
  
  .breadcrumb-category-mobile {
    display: none;
  }
}

/* === SHARED ICONS STYLES === */

.tipsheet-icons {
  display: flex;
  gap: 8px;
  margin-left: auto;
  position: relative;
  z-index: 15;
}

@media (max-width: 767px) {
  .tipsheet-icons {
    margin-left: 0;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .tipsheet-icons {
    gap: 12px;
  }
}

.tipsheet-icon {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .tipsheet-icon {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-icon {
    width: 60px;
    height: 60px;
  }
}

.tipsheet-icon:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

.tipsheet-icon img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .tipsheet-icon img {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-icon img {
    width: 30px;
    height: 30px;
  }
}

.tipsheet-icon:hover img {
  opacity: 1;
}

/* === SHARED TYPOGRAPHY === */

.tipsheet-header-card {
  display: flex;
  flex-direction: column;
}

/* Mobile order: Title → Image → Audio → Subtitle → Description */
.tipsheet-header-card h1 { order: 1; }
.header-overview-image.mobile-only { order: 2; }
.tipsheet-audio-player { order: 3; }
.tipsheet-header-card .subtitle { order: 4; }
.tipsheet-header-card .description { order: 5; }

/* Desktop order: Title → Subtitle → Description → Audio */
@media (min-width: 768px) {
  .tipsheet-header-card h1 { order: 1; }
  .tipsheet-header-card .subtitle { order: 2; }
  .tipsheet-header-card .description { order: 3; }
  .tipsheet-audio-player { order: 4; }
}

.tipsheet-header-card h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  color: #1f1f1f;
}

.tipsheet-header-card .subtitle {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 300;
  font-family: 'Readex Pro', sans-serif;
  text-align: center;
  margin: 0;
  color: #1f1f1f;
}

.tipsheet-header-card .description {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.5;
  text-align: center;
  margin: 0;
  color: #1f1f1f;
  padding-bottom: 20px;
}

/* === SHARED CONTENT BACKGROUND === */

.tipsheet-content-background {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #FAFAFA;
  margin-top: -24px;
  min-height: 200px;
  z-index: 10;
  padding: 0 0 48px 0;
}

/* Travel tipsheet specific content background adjustments */
.travel-tipsheet-wrapper .tipsheet-content-background {
  margin-top: -16px;
  z-index: 15;
}

@media (min-width: 768px) {
  .tipsheet-content-background {
    padding: 48px 0;
  }
  
  .travel-tipsheet-wrapper .tipsheet-content-background {
    margin-top: -24px;
  }
}

/* === SHARED CONTENT CARDS === */

.content-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
  color: #1f1f1f;
}

@media (min-width: 768px) {
  .content-card {
    border-radius: 28px;
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .content-card {
    border-radius: 32px;
    padding: 32px 24px;
  }
}

.pro-tip-card {
  background: #0E7493 !important;
}

.pro-tip-card .card-heading,
.pro-tip-card .card-text-column h3,
.pro-tip-card .card-content p {
  color: #FFFFFF !important;
}

.pro-tip-card .card-text-column .card-subtitle {
  color: #DEDEDE !important;
}

.pro-tip-card .card-divider {
  background-color: #4D9196 !important;
}

.font-family-lora {
  font-family: var(--wp--custom--font-family-lora) !important;
}

.font-family-poltawski {
  font-family: var(--wp--custom--font-family-poltawski) !important;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}

.card-text-column {
  flex: 1;
}

.card-text-column h2,
.card-text-column h3 {
  margin: 0 0 8px 0 !important;
  font-weight: 700;
  color: #1f1f1f;
}

.card-text-column h3 {
  font-size: clamp(20px, 3.5vw, 25px) !important;
}

.card-text-column .card-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 !important;
  color: #317277 !important;
  font-family: var(--wp--custom--font-family-lora);
}

.card-heading {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  margin: 0;
  color: #1f1f1f;
}

.card-content p {
  font-size: 15px;
  line-height: 200%;
  margin: 0;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  color: #1f1f1f;
}

.card-content p + p {
  margin-top: 16px;
}

.card-content strong {
  font-weight: 600;
  color: #1f1f1f;
}

.card-divider {
  height: 1px;
  background-color: #DEDEDE;
  margin: 16px 0;
  border: none;
}

/* === SHARED SIDE IMAGE STYLES === */

.side-image-card {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0;
}

.side-image-container {
  width: 100%;
  padding: 0;
}

.side-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
}

.side-image-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
}

.side-image:focus {
  outline: 2px solid #0E7493;
  outline-offset: 2px;
}

.side-image.loading {
  opacity: 0.7;
}

/* === Q&A TIPSHEET SPECIFIC STYLES === */

.tipsheet-overview-section {
  max-width: 1132px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 15;
}

/* Travel tipsheet specific overview section adjustments */
.travel-tipsheet-wrapper .tipsheet-overview-section {
  padding-top: 16px;
  z-index: 20;
}

@media (min-width: 768px) {
  .tipsheet-overview-section {
    padding: 0 20px;
  }
  
  .travel-tipsheet-wrapper .tipsheet-overview-section {
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-overview-section {
    padding: 0;
  }
  
  .travel-tipsheet-wrapper .tipsheet-overview-section {
    padding: 0;
  }
}

.overview-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
  color: #1f1f1f;
}

@media (min-width: 768px) {
  .overview-card {
    border-radius: 28px;
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .overview-card {
    border-radius: 32px;
    padding: 32px 24px;
  }
}

.overview-columns {
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .overview-columns {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .overview-columns {
    gap: 54px;
  }
}

.overview-text-column {
  width: 100%;
}

@media (min-width: 768px) {
  .overview-text-column {
    flex: 2;
  }
}

.overview-image-column {
  width: 100%;
  display: flex;
  justify-content: center;
  order: 2;
}

@media (min-width: 768px) {
  .overview-image-column {
    flex: 1;
    justify-content: flex-start;
  }
}

.overview-image-placeholder {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
}

.overview-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
  .overview-image-placeholder,
  .overview-image {
    max-width: 240px;
  }
}

@media (min-width: 768px) {
  .overview-image-placeholder,
  .overview-image {
    max-width: none;
    border-radius: 16px;
    margin: 0;
  }
}

/* OpenStreetMap iframe styling - Simplified */
.overview-map-container {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.overview-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: contrast(0.8) brightness(1.25) grayscale(35%);
}

@media (min-width: 480px) {
  .overview-map-container {
    max-width: 240px;
  }
}

@media (min-width: 768px) {
  .overview-map-container {
    max-width: none;
    border-radius: 16px;
    margin: 0;
  }
}

/* Enhanced placeholder for addresses without coordinates */
.overview-image-placeholder h4 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  color: #1f1f1f;
}

.overview-image-placeholder p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  color: #666666;
}

.overview-image-placeholder a {
  font-family: 'Readex Pro', sans-serif;
  transition: color 0.3s ease;
}

.overview-image-placeholder a:hover {
  color: #8A1A74;
}

.overview-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1f1f1f;
}

.overview-content {
  font-size: 17px;
  line-height: 200%;
  margin: 0;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  color: #1f1f1f;
}

/* SHARED TWO-COLUMN LAYOUT (used by both Q&A and Travel) */
.tipsheet-two-column-section {
  max-width: 1132px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .tipsheet-two-column-section {
    padding: 28px 20px;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .tipsheet-two-column-section {
    padding: 32px 0;
    flex-direction: row;
    gap: 0;
  }
}

.tipsheet-left-column {
  flex: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-right: 0;
}

@media (min-width: 1024px) {
  .tipsheet-left-column {
    flex: 2;
    width: auto;
    gap: 32px;
    margin-right: 32px;
  }
}

.tipsheet-right-column {
  flex: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .tipsheet-right-column {
    flex: 1;
    width: auto;
    gap: 32px;
  }
}

.content-card .card-content ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  margin: 0 !important;
  padding-left: 24px !important;
}

.tipsheet-right-column .content-card .card-content ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 24px !important;
  margin: 0 !important;
}

.tipsheet-right-column .content-card .card-content li,
.tipsheet-left-column .content-card .card-content li {
  font-size: 15px !important;
  line-height: 200% !important;
  margin: 0 0 8px 0 !important;
  font-family: 'Readex Pro', sans-serif !important;
  font-weight: 300 !important;
  color: #1f1f1f !important;
  display: list-item !important;
  list-style: disc outside !important;
}

.tipsheet-right-column .content-card .card-content li::marker,
.tipsheet-left-column .content-card .card-content li::marker {
  color: #1f1f1f !important;
}

.tipsheet-right-column .content-card .card-content li:last-child,
.tipsheet-left-column .content-card .card-content li:last-child {
  margin-bottom: 0 !important;
}

.tipsheet-right-column .content-card .card-content a {
  color: #AA2A94;
  text-decoration: none;
  font-weight: 400;
}

.tipsheet-right-column .content-card .card-content a:hover {
  color: #8A1A74;
  text-decoration: underline;
}

/* Real life scenario columns */
.scenario-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .scenario-columns {
    flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .scenario-columns {
    gap: 24px;
  }
}

.scenario-text-column {
  flex: 1;
  order: 1;
}

.scenario-image-column {
  width: 100%;
  display: flex;
  justify-content: center;
  order: 2;
}

@media (min-width: 768px) {
  .scenario-image-column {
    flex: 1;
    justify-content: flex-start;
  }
}

.scenario-image-placeholder {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
}

.scenario-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
  .scenario-image-placeholder,
  .scenario-image {
    max-width: 320px;
  }
}

@media (min-width: 768px) {
  .scenario-image-placeholder,
  .scenario-image {
    max-width: none;
    border-radius: 16px;
    margin: 0;
  }
}

.content-card .card-content ul {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

.content-card .card-content ul:last-child {
  margin-bottom: 0 !important;
}

/* === TRAVEL TIPSHEET SPECIFIC STYLES === */

/* Location Summary Actions */
.location-divider {
  height: 1px;
  background-color: #DEDEDE;
  margin: 28px 0 24px 0;
  border: none;
}

@media (min-width: 768px) {
  .location-divider {
    margin: 36px 0 28px 0;
  }
}

.location-actions-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .location-actions-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .location-actions-section {
    align-items: center;
  }
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

@media (min-width: 480px) {
  .location-buttons {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .location-buttons {
    flex-direction: row;
    gap: 16px;
    width: auto;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.location-action-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: #FFFFFF;
  color: #AA2A94;
  text-decoration: none;
  border: 2px solid #AA2A94;
  border-radius: 60px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 56px;
  min-width: 200px;
}

@media (min-width: 768px) {
  .location-action-button {
    font-size: 15px;
    min-width: 220px;
  }
}

.location-action-button:hover {
  background: #AA2A94;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(170, 42, 148, 0.25);
}

.location-action-button:hover .button-icon svg {
  fill: #FFFFFF;
}

.location-action-button .button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-action-button .button-icon svg {
  width: 18px;
  height: 18px;
  fill: #AA2A94;
  transition: fill 0.3s ease;
}

@media (min-width: 768px) {
  .location-action-button .button-icon svg {
    width: 20px;
    height: 20px;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  width: 100%;
  align-items: center;
}

@media (min-width: 768px) {
  .location-info {
    text-align: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-direction: column;
  }
}

@media (min-width: 830px) {
  .location-info {
    text-align: right;
    align-items: flex-end;
    gap: 24px;
    width: auto;
    flex-shrink: 0;
    min-width: 240px;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .location-info {
    gap: 40px !important;
    min-width: 320px;
  }
}

.location-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

@media (min-width: 768px) {
  .location-info-item {
    align-items: center;
    gap: 6px;
  }
}

@media (min-width: 830px) {
  .location-info-item {
    align-items: flex-end;
    gap: 4px;
  }
}

@media (min-width: 1024px) {
  .location-info-item {
    display: block !important;
    text-align: right;
  }
}

/* Extra specificity for larger screens */
@media (min-width: 1200px) {
  .location-info-item {
    display: block !important;
    text-align: right !important;
  }
}

.location-info .info-label {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #666666;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

@media (min-width: 830px) {
  .location-info .info-label {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .location-info .info-label {
    display: inline !important;
    margin-right: 6px;
  }
}

/* Extra specificity for larger screens */
@media (min-width: 1200px) {
  .location-info .info-label {
    display: inline !important;
    margin-right: 6px !important;
  }
}

.location-info .info-value {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0E7493;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .location-info .info-value {
    font-size: 16px;
  }
}

@media (min-width: 830px) {
  .location-info .info-value {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .location-info .info-value {
    font-size: 16px;
    display: inline !important;
  }
}

/* Extra specificity for larger screens */
@media (min-width: 1200px) {
  .location-info .info-value {
    font-size: 16px !important;
    display: inline !important;
  }
}

/* School tabs for travel tipsheets */
.travel-school-tabs {
  margin-bottom: 32px;
}

/* Mobile-first: Dropdown approach */
.tab-navigation {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

/* Mobile dropdown button */
.tab-dropdown-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0E7493;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-dropdown-button:hover {
  border-color: #0E7493;
}

.tab-dropdown-button.active {
  border-color: #0E7493;
  background: #f8fafb;
}

.tab-dropdown-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.tab-dropdown-button.active .tab-dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile dropdown menu */
.tab-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tab-dropdown-menu.active {
  max-height: 300px;
}

.school-tab {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #F0F0F0;
}



.school-tab:hover {
  background: #F8F9FA;
  color: #0E7493;
}

.school-tab.active {
  background: #F0F8FA;
  color: #0E7493;
  font-weight: 600;
}

/* Desktop: Traditional tab layout */
@media (min-width: 768px) {
  .tab-dropdown-button {
    display: none;
  }
  
  .tab-dropdown-menu {
    position: static;
    max-height: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding-bottom: 0;
    border-bottom: 4px solid #E5E5E5;
  }
  
  .tab-dropdown-menu.active {
    max-height: none;
  }
  
  .school-tab {
    display: block;
    background: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    border-radius: 0;
    padding: 18px 32px 18px 32px;
    font-size: 16px;
    color: #999999;
    white-space: nowrap;
    position: relative;
    bottom: -4px;
    text-align: center;
    flex: 1;
    min-width: 120px; /* Ensure minimum width for proper underline display */
    font-weight: 400; /* Consistent font-weight across all states */
  }
  
  .school-tab:hover {
    background: transparent;
    color: #0E7493;
    font-weight: 400; /* Maintain consistent font-weight on hover */
  }
  
  .school-tab.active {
    color: #0E7493 !important;
    border-bottom: 4px solid #0E7493 !important;
    background: transparent;
    font-weight: 400; /* Same font-weight as inactive tabs */
  }
}

.school-content {
  display: none;
}

.school-content.active {
  display: block;
}

/* Travel tipsheet sections */
.things-to-see-section {
  margin-bottom: 32px;
}

.section-heading {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1f1f1f !important;
  margin: 0px 0px 8px 0px !important;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 28px !important;
  }
}

.section-subtitle {
  font-family: var(--wp--custom--font-family-lora), serif;
  font-weight: 600;
  font-size: 17px;
  color: #227972 !important;
  margin: 0px 0px 32px 0px !important;
  padding: 0px 0px 16px 0px;
  border-bottom: 1px solid #DEDEDE;
}

/* ===============================
   NEW MUST-VISIT SPOTS STYLES
   =============================== */

.must-visit-spots {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.must-visit-spot {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.must-visit-spot:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

/* New spot header - single column layout (no images) */
.spot-header {
  padding: 24px;
}

@media (max-width: 767px) {
  .spot-header {
    padding: 20px;
  }
}

.spot-content {
  /* Single column - text content only */
}

.spot-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-family: 'Readex Pro', sans-serif;

}

.spot-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0 !important;
}

.spot-image {
  /* Right column - image */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .spot-image {
    justify-content: center;
  }
}

.spot-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .spot-image img {
    max-width: 150px;
  }
}

.spot-image-placeholder {
  width: 100%;
  max-width: 200px;
  height: 150px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
  text-align: center;
}

@media (max-width: 767px) {
  .spot-image-placeholder {
    max-width: 150px;
  }
}

/* Spot dividers */
.spot-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 0 24px;
}

/* Special dividers with specific colors */
.spot-description-divider,
.spot-did-you-know-divider {
  background: #5EBDD9;
}

/* What to do divider - shows when collapsed, hides when expanded */
.spot-what-to-do-divider {
  background: #5EBDD9;
}

.must-visit-spot.expanded .spot-what-to-do-divider {
  display: none;
}

/* Divider below section subtitles */
.spot-subtitle-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 16px 24px 24px 0px;
}

/* Dividers between multiple items */
.question-divider,
.hunt-item-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 16px 0px;
}

/* Divider between Ask the Kids items in standalone section */
.ask-item-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 12px 0;
}

/* Spot sections */
.spot-section {
  padding: 16px 24px;
  line-height: 1.6;
  margin: 0;
}

.spot-section.what-to-do {
  padding: 16px 24px;
}

.spot-section.did-you-know {
  padding: 16px 24px;
}

.section-label {
  color: #0E7493;
  font-weight: 900;
  margin-right: 0.5rem;
  display: inline;
}

/* === MUST-VISIT SPOTS READING TEXT - 15px FONT SIZE === */

/* 1. Spot description in header */
.spot-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* 2. What to do and Did you know content */
.section-content {
  color: #333;
  display: inline;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* 3. Hunt task and hint text */
.hunt-task {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333;
  line-height: 1.4;
  font-size: 17px;
}

.hunt-hint {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.4;
}

/* 4. Question fact text */
.question-fact {
  margin: 0 0 1rem 0;
  color: #333;
  font-weight: 400;
  line-height: 1.4;
  font-size: 15px;
}

.question-fact strong {
  color: #333;
  font-weight: 600;
}

/* 5. Question explanation text */
.question-explanation {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* === END MUST-VISIT SPOTS READING TEXT === */

/* Expandable content with clean transition */
.expandable-content {
  display: block !important; /* Override inline style */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-out,
              max-height 0.3s ease-out,
              transform 0.3s ease-out;
}

.expandable-content.expanded {
  opacity: 1;
  max-height: 2000px;
  transform: translateY(0);
  overflow: visible;
}

/* === EXPAND/COLLAPSE FUNCTIONALITY === */

/* Expand/Collapse Container */
.expand-collapse-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* Button Base Styles */
.expand-btn {
  background: #AA2A94;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.collapse-btn {
  background: #AA2A94;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none !important;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.expand-btn:hover,
.collapse-btn:hover {
  transform: translateY(-1px);
}

.expand-btn:active,
.collapse-btn:active {
  transform: translateY(0);
}

/* Default State: Show Expand, Hide Collapse */
.must-visit-spot .expand-btn {
  display: flex !important;
}

.must-visit-spot .collapse-btn {
  display: none !important;
}

/* Expanded State: Hide Expand, Show Collapse */
.must-visit-spot.expanded .expand-btn {
  display: none !important;
}

.must-visit-spot.expanded .collapse-btn {
  display: flex !important;
}

/* Extra specificity for plugin with inline styles */
.expand-collapse-container .expand-btn {
  display: flex !important;
}

.expand-collapse-container .collapse-btn {
  display: none !important;
}

.must-visit-spot.expanded .expand-collapse-container .expand-btn {
  display: none !important;
}

.must-visit-spot.expanded .expand-collapse-container .collapse-btn {
  display: flex !important;
}

/* Expandable Content */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.expandable-content.expanded {
  max-height: 2000px; /* Large enough value for content */
  transition: max-height 0.5s ease-in;
}

/* Arrow Icons */
.expand-arrow,
.collapse-arrow {
  transition: transform 0.2s ease;
  font-size: 12px;
}

.expand-btn:hover .expand-arrow {
  transform: translateY(1px);
}

.collapse-btn:hover .collapse-arrow {
  transform: translateY(-1px);
}

/* Smooth Animations for Better UX */
.must-visit-spot {
  transition: all 0.3s ease;
}

.must-visit-spot.expanded {
  border-radius: 12px;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
  .expand-btn,
  .collapse-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .expand-collapse-container {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .expand-btn,
  .collapse-btn {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
  }
}


/* Scavenger Hunt section */
.scavenger-hunt-section {
  padding: 16px 24px;
}

.spot-section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E7493;
  margin: 16px 0 8px 0 !important;
  line-height: 1.3;
  font-family: 'Readex Pro', sans-serif;
  padding: 0;
}

.spot-section-subtitle {
  font-family: var(--wp--custom--font-family-lora), serif;
  font-weight: 600;
  font-size: 17px;
  color: #227972 !important;
  margin: 0 0 24px 0;
  padding: 0;
  border-bottom: none;
}

.hunt-item {
  margin-bottom: 1.5rem;
}

.hunt-task {
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333;
  line-height: 1.4;
}

.hunt-hint {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Ask the kids section */
.ask-kids-section {
  padding: 16px 24px;
}

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

.question-text {
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #333;
  font-size: 17px;
  line-height: 1.4;
}

/* Expand/Collapse buttons */
.expand-collapse-container {
  display: flex;
  justify-content: center;
  padding: 20px 24px;
}

.expand-btn, .collapse-btn {
  background: transparent;
  color: #AA2A94;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
}

/* FIXED: Default button visibility - show expand, hide collapse with higher specificity */
.must-visit-spot .expand-btn {
  display: flex !important;
}

.must-visit-spot .collapse-btn {
  display: none !important;
}

/* FIXED: When spot is expanded, hide expand button and show collapse button with higher specificity */
.must-visit-spot.expanded .expand-btn {
  display: none !important;
}

.must-visit-spot.expanded .collapse-btn {
  display: flex !important;
}

.expand-btn:hover {
  color: #7A1FAE;
  transform: translateY(-1px);
}

.collapse-btn:hover {
  color: #7A1FAE;
  transform: translateY(-1px);
}

.expand-arrow, .collapse-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  line-height: 1;
  color: inherit;
}

/* Spots divider between multiple spots */
.spots-divider {
  border: none;
  height: 2px;
  background: #f0f0f0;
  margin: 24px 0;
}

/* Ask the kids functionality (separate from spots) */
.ask-the-kids-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ask-item {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

.ask-question {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.ask-question:hover {
  background-color: #F0F0F0;
}

.ask-question p {
  margin: 0;
  flex: 1;
}

.ask-toggle {
  width: 24px;
  height: 24px;
  background: #0E7493;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.ask-toggle.expanded {
  transform: rotate(45deg);
}

.ask-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #F8F9FA;
}

.ask-answer.expanded {
  max-height: 500px;
}

.ask-answer p {
  padding: 16px;
  margin: 0;
}

/* Scavenger hunt section (separate from spots) */
.scavenger-hunt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scavenger-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
  border-left: 4px solid #0E7493;
}

.scavenger-item h5 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1f1f1f;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.scavenger-item p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

/* Gallery card */
.gallery-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
  color: #1f1f1f;
}

@media (min-width: 768px) {
  .gallery-card {
    border-radius: 28px;
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .gallery-card {
    border-radius: 32px;
    padding: 32px 24px;
  }
}

.gallery-container {
  width: 100%;
}

.gallery-main-image {
  width: 100%;
  margin-bottom: 16px;
}

.gallery-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-main-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f0f0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  border: 2px dashed #ccc;
}

.gallery-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.gallery-thumbnail.active {
  opacity: 1;
  box-shadow: 0 0 0 2px #0E7493;
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 12px;
  border: 1px dashed #ccc;
}

/* === NEW LEFT COLUMN SECTIONS AFTER THINGS TO SEE === */

/* Fun Facts Section - Card Style */
.fun-facts-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 32px;
}

.fun-facts-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.fun-facts-card .section-heading {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.fun-facts-card .section-subtitle {
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #DEDEDE;
}

.fun-facts-card .spot-subtitle-divider {
  margin: 16px 0 24px 0;
}

.fun-facts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fun-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
}

.fun-fact-item::before {
  content: '•';
  color: #0E7493;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
  margin-top: 2px;
}

.fun-fact-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.fun-fact-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}

/* More Nearby for Kids Section - Card Style */
.more-nearby-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 32px;
}

.more-nearby-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.more-nearby-card .section-heading {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.more-nearby-card .section-subtitle {
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #DEDEDE;
}

.more-nearby-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nearby-item {
  padding: 0;
}

.nearby-item-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .nearby-item-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.nearby-item-text {
  /* Left column - text content */
}

/* Inline title and description styling - matches question-fact */
.nearby-item-content {
  margin: 0 0 1rem 0;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  font-size: 15px;
}

.nearby-item-content:last-child {
  margin-bottom: 0;
}

.nearby-item-title {
  color: #333;
  font-weight: 600;
}

.nearby-item-image {
  /* Right column - image */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .nearby-item-image {
    justify-content: center;
  }
}

.nearby-image-placeholder {
  width: 100%;
  max-width: 150px;
  height: 100px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: 'Readex Pro', sans-serif;
  font-size: 12px;
  border: 2px dashed #ccc;
  text-align: center;
}

.nearby-image {
  width: 100%;
  max-width: 150px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .nearby-image-placeholder {
    max-width: none;
    width: 100%;
    height: 200px;
  }
  
  .nearby-image {
    max-width: none;
    width: 100%;
    height: 200px;
  }
}

.nearby-item-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}

/* Read Before You Go Section - Card Style */
.read-before-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 32px;
}

.read-before-card:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.read-before-card .section-heading {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.read-before-card .section-subtitle {
  margin-left: 0 !important;
  padding-left: 0 !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #DEDEDE;
  color: #0E7493 !important;
}

.recommended-books-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-item {
  padding: 0;
}

.book-item-columns {
  display: grid;
  grid-template-columns: 2fr auto;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .book-item-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
  }
}

.book-item-text {
  /* Left column - text content */
}

.book-item-title {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin: 0 !important;
  line-height: 1.4;
  font-family: 'Readex Pro', sans-serif;
}

.book-item-description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0 !important;
}

.book-item-button {
  /* Right column - button */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .book-item-button {
    justify-content: flex-start;
    margin-top: 0.5rem;
  }
}

.book-find-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  color: #0E7493;
  text-decoration: none;
  border: 1px solid #0E7493;
  border-radius: 20px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}

.book-find-button:hover {
  background: #0E7493;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(14, 116, 147, 0.25);
}

.book-find-button:hover .button-icon svg {
  fill: #FFFFFF;
}

.book-find-button .button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-find-button .button-icon svg {
  width: 14px;
  height: 14px;
  fill: #0E7493;
  transition: fill 0.3s ease;
}

.book-item-divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}

/* Stay Entertained Card - Special Teal Styling */
.stay-entertained-card {
  background: #0E7493 !important;
  border-radius: 24px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
  color: #FFFFFF;
  text-align: center;
}

@media (min-width: 768px) {
  .stay-entertained-card {
    border-radius: 28px;
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .stay-entertained-card {
    border-radius: 32px;
    padding: 32px 24px;
  }
}

.stay-entertained-card .card-heading {
  color: #FFFFFF !important;
  text-align: center;
}

.stay-entertained-card .card-subtitle {
  color: #FDDE9F !important;
  font-family: 'Readex Pro', sans-serif !important;
  font-size: 15px !important;
  text-align: center;
}

.stay-entertained-card .card-divider {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.stay-entertained-card .card-content {
  text-align: center;
}

.stay-entertained-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: #FFFFFF;
  text-decoration: none;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  font-family: 'Readex Pro', sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  width: 100%;
  text-align: center;
}

.stay-entertained-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Discount Codes Card - Teal Subtitle and Special List Styling */
.content-card .card-text-column .card-subtitle {
  color: #0E7493 !important;
}

/* Discount Codes - Remove bullets and style items specifically */
.discount-codes-card .card-content .discount-codes-list {
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.discount-codes-card .card-content .discount-codes-list li {
  color: #0E7493 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin: 0 0 0 0 !important;
  font-family: 'Readex Pro', sans-serif !important;
  font-weight: 400 !important;
  display: block !important;
  list-style: none !important;
  padding: 12px 0 !important;
}

.discount-codes-card .card-content .discount-codes-list li::marker {
  display: none !important;
}

/* More in Location - Keep purple links */
.tipsheet-right-column .content-card .card-content li a {
  color: #AA2A94 !important;
  text-decoration: none;
  font-weight: 400;
}

.tipsheet-right-column .content-card .card-content li a:hover {
  color: #8A1A74 !important;
  text-decoration: underline;
}

/* Right column content styling */
.nearby-attraction {
  margin-bottom: 16px;
}

.nearby-attraction:last-child {
  margin-bottom: 0;
}

.nearby-attraction h4 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1f1f1f;
  margin: 0 0 8px 0;
}

.nearby-attraction p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.recommended-book {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.recommended-book:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recommended-book h4 {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1f1f1f;
  margin: 0 0 8px 0;
}

.recommended-book p {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #666666;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.recommended-book p:last-child {
  margin-bottom: 0;
  color: #1f1f1f;
}

/* === SHARED MODALS AND NOTIFICATIONS === */

.qr-modal,
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.qr-modal-content,
.share-modal-content {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.share-modal-content {
  max-width: 500px;
}

.qr-header,
.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.qr-header h3,
.share-modal-header h3 {
  margin: 0;
  font-family: 'Readex Pro', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1f1f1f;
}

.qr-close,
.share-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.qr-close:hover,
.share-modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.qr-body,
.share-modal-body {
  text-align: center;
}

.qr-code-container {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.qr-code {
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-title {
  font-family: 'Readex Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 16px 0 8px 0;
}

.qr-url {
  font-family: 'Readex Pro', sans-serif;
  font-size: 12px;
  color: #666;
  word-break: break-all;
  margin: 8px 0 20px 0;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.qr-download {
  background: #0E7493;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qr-download:hover {
  background: #0d6783;
}

.share-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.share-social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #f8f9fa;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-social-btn:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-social-btn:nth-child(1) {
  background: #1da1f2;
  color: white;
}

.share-social-btn:nth-child(1):hover {
  background: #1a91da;
}

.share-social-btn:nth-child(2) {
  background: #4267b2;
  color: white;
}

.share-social-btn:nth-child(2):hover {
  background: #365899;
}

.share-social-btn:nth-child(3) {
  background: #0077b5;
  color: white;
}

.share-social-btn:nth-child(3):hover {
  background: #005885;
}

.share-social-btn:nth-child(4) {
  background: #25d366;
  color: white;
}

.share-social-btn:nth-child(4):hover {
  background: #1ebe57;
}

.share-url-section {
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.share-url-label {
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  text-align: left;
}

.share-url-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.share-url-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  color: #666;
  background: #f8f9fa;
}

.share-url-input:focus {
  outline: none;
  border-color: #0E7493;
  box-shadow: 0 0 0 2px rgba(14, 116, 147, 0.2);
}

.share-copy-btn {
  padding: 12px;
  background: #0E7493;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.share-copy-btn:hover {
  background: #0d6783;
}

.tipsheet-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Readex Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  z-index: 10001;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tipsheet-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.tipsheet-notification-success {
  background: #28a745;
}

.tipsheet-notification-error {
  background: #dc3545;
}

.tipsheet-notification-info {
  background: #17a2b8;
}

/* === MOBILE RESPONSIVE ADJUSTMENTS === */

@media (max-width: 767px) {
  .qr-modal-content,
  .share-modal-content {
    padding: 20px;
    width: 95%;
  }
  
  .share-social-icons {
    gap: 12px;
  }
  
  .share-social-btn {
    width: 48px;
    height: 48px;
  }
  
  .tipsheet-notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
    transform: translateY(100%);
  }
  
  .tipsheet-notification.show {
    transform: translateY(0);
  }
  
  .location-actions-section {
    gap: 16px;
  }
  
  .location-buttons {
    gap: 10px;
  }
  
  .location-action-button {
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
  }
  
  .location-action-button .button-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .location-info {
    gap: 10px;
  }
  
  .location-info .info-value {
    font-size: 15px;
  }
}