h1 {
  margin-bottom: 40px;
}

.place-hero-grid {
  margin-top: 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "place-name place-media"
    "place-text place-media"
    "place-tickets place-media"
    "performances place-media"
    "tours place-media";
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 40px;
}

.place-summary {
  /* font-size: 18px; */
  /* line-height: 1.6; */
  /* margin: 20px 0 0; */
  /* max-width: 800px; */
}

.place-text-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 800px;
  min-width: 0;
}

.place-text-column .expandable-text {
  order: 0 !important;
}

.place-about h2 {
  margin-bottom: 20px;
}

.place-ticket-buy-button {
  grid-area: place-tickets;
  margin-bottom: 30px;
  min-width: 0;
  width: fit-content;
}

.place-about-checkbox {
  display: none;
}

.place-about .place-summary {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: calc(1.6em * 3);
  overflow: hidden;
}

.place-about-checkbox:checked + .place-summary {
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.place-about-toggle,
.traveller-review-read-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.place-about-toggle:hover,
.traveller-review-read-more:hover {
  color: var(--color-white);
}

.place-about-less {
  display: none;
}

.place-about-checkbox:checked ~ .place-about-more {
  display: none;
}

.place-about-checkbox:checked ~ .place-about-less {
  display: inline-flex;
}

.place-hero-grid .performances {
  grid-area: performances;
  margin-top: 0;
  min-width: 0;
  color: var(--text);
}

.place-hero-grid .performances h2 {
  color: var(--text);
}

.place-hero-grid .performances-heading-row {
  flex-wrap: wrap;
}

.place-hero-grid .performance-filter-buttons {
  justify-content: flex-start;
}

.place-hero-grid .performance-list {
  flex-wrap: wrap;
}

.tours h2 {
  margin-bottom: 40px;
  color: white;
}

.tours-summary {
  margin-bottom: 40px;
  color: white;
}

.tours-offers {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.tour-offer {
  display: flex;
  flex-direction: column;
  width: 110px;
  gap: 10px;
}

.tour-offer img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 24px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tour-offer a {
  font-size: 14px;
}

.place-name {
  text-align: left !important;
  grid-area: place-name;
}

/* Override header h1 text-align for place pages */

header .place-name {
  text-align: left !important;
}

/* Override header text-align for place pages */

header:has(.place-name) {
  text-align: left !important;
}

.place-hero-grid .place-legacy-tickets {
  grid-area: tickets;
}

.place-hero-grid .place-legacy-tickets .event-price {
  color: white;
}

.place-hero-grid .tours {
  grid-area: tours;
}

.place-hero-grid .expandable-text {
  grid-area: place-text;
  margin-bottom: 30px;
  min-width: 0;
  color: white;
}

.place-hero-grid .expandable-text h2 {
  color: white;
}

.place-hero-grid .place-description {
  color: white;
}

.place-hero-grid .performances {
  grid-area: performances;
  margin-top: 0;
  min-width: 0;
  color: var(--text);
}

.place-hero-grid .performances h2 {
  color: var(--text);
}

.place-hero-grid .performances-heading-row {
  flex-wrap: wrap;
}

.place-hero-grid .performance-filter-buttons {
  justify-content: flex-start;
}

.place-hero-grid .performance-list {
  flex-wrap: wrap;
}

.place-media {
  grid-area: place-media;
  display: flex;

  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
  margin-right: 0;
}

/* Search Section - Styles moved to style.css for universal use */

/* Museum Header Styles */

.places-header {
  background: linear-gradient(135deg, var(--color-mid-blue), var(--color-dark-blue));
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.places-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.places-header h1 {
  font-size: clamp(32px, 5vw, var(--font-h1-size));
  font-weight: var(--font-h1-weight);
  line-height: var(--font-h1-line-height);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  position: relative;
  z-index: 1;
}

.places-subtitle {
  font-size: var(--font-body-size);
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 0 0;
  position: relative;
  z-index: 1;
}

/* Search and Filter Section */

.places-search-filter {
  background: var(--bg-card);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.places-search-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.place-search {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px auto;
  position: relative;
}

.place-search input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: var(--font-body-size);
  background: var(--bg-card);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.place-search input:focus {
  outline: none;
  border-color: var(--secondary);
}

.place-search::before {
  content: "🔍";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
}

/* Badge Filter Buttons - Using go-to-links design system */

/* Styles are inherited from .go-to-links >* in style.css */

/* Sort controls on the right */

.sort-controls {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-right: 8px;
}

.sort-select-wrapper {
  position: relative;
  display: inline-block;
}

.sort-select-wrapper::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/static/media/elements/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.sort-select {
  background: transparent;
  border: none;
  color: var(--color-dark-blue);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
}

.sort-select:focus {
  outline: none;
}

.places-subtitle {
  text-align: center;
  font-size: var(--font-body-size);
  color: var(--text-muted);
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Individual Museum Page Styles */

/* Museum Main Content Layout */

.place-main-content {
  padding: 40px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.place-description-section {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.place-description-text {
  flex: 1;
  max-width: 800px;
}

.place-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.place-badge {
  display: block;
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.place-badge.free {
  background: rgba(34, 197, 94, 0.95);
  border-color: rgba(34, 197, 94, 0.3);
}

.place-popularity {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-white);
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
}

header .place-header-info h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 24px 0;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  color: var(--color-white);
  font-family: var(--font-family-primary);
  letter-spacing: -0.02em;
}

/* Desktop layout - description on left, image on right */

.expandable-text {
  flex: 1;
  max-width: 800px;
  order: 1;
}

.place-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: transparent;
  object-fit: cover;
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

.place-image-container {
  flex-shrink: 0;
  order: 2;
}

/* Desktop-specific overrides */

/* Note: tablet-up styles should live in base; keep only max-width queries below */

.place-main-content {
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 40px !important;
  padding: 40px 0 0 0 !important;
}

.expandable-text {
  order: 1 !important;
  flex: 1 !important;
  max-width: 800px !important;
}

.place-image-container {
  position: relative;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
  margin-left: auto;
  margin-right: 0;
}

.place-image-container img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: transparent;
  object-fit: cover;
}

/* Shared expandable text */

.expand-checkbox {
  display: none !important;
}

.expandable-text .place-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.expand-checkbox:checked + .place-description {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
  overflow: visible;
}

.expandable-text .show-less {
  display: none;
}

.expand-checkbox:checked ~ .show-more {
  display: none;
}

.expand-checkbox:checked ~ .show-less {
  display: inline-flex;
}

.expandable-text.expandable-text-fits .expand-button {
  display: none !important;
}

.place-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-start;
}

.place-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #b8ddff;
  color: var(--color-dark-blue);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.place-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--color-white);
}

.place-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* Museum Content Sections */

.place-content {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 80px 40px;
}

.section-title {
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.section-title::before {
  content: "";
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #041429, #2974b9);
  border-radius: 4px;
}

/* Specific styling for opening hours section */

.opening-hours .section-title::before {
  content: "🕒";
}

/* Hours and Highlights Container */

.hours-and-highlights {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Opening Hours */

.opening-hours {
  flex-shrink: 0;
  width: 300px;
}

.place-facts-carousel {
  flex: 1;
  min-width: 0;
}

.place-facts-carousel .carousel-wrapper {
  margin-bottom: 0;
}

#highlights {
  flex: 1;
  min-width: 0;
}

.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-day {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: 1.6;
}

.opening-day .day-name {
  font-weight: 600;
}

.opening-day .hours {
  color: var(--text-muted);
}

/* Fun Facts - Moved to style.css for global use */

/* Traveller Reviews */

.traveller-reviews-section {
  margin: 64px 0 40px;
}

.traveller-reviews-section .carousel-wrapper {
  margin-bottom: 0;
}

.traveller-review-card {
  background: #fff;
  border: 1px solid rgba(4, 20, 41, 0.06);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.traveller-review-author {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  width: 100%;
}

.traveller-review-photo {
  background: #5b67c7;
  border-radius: 50%;
  flex: 0 0 56px;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.traveller-review-photo--placeholder {
  display: inline-block;
  position: relative;
}

.traveller-review-photo--placeholder::before {
  background: #f8fafc;
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 19px;
  position: absolute;
  top: 10px;
  width: 18px;
}

.traveller-review-photo--placeholder::after {
  background: #f8fafc;
  border-radius: 50% 50% 42% 42%;
  bottom: 8px;
  content: "";
  height: 20px;
  left: 13px;
  position: absolute;
  width: 30px;
}

.traveller-review-author-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 3px;
  min-width: 0;
}

.traveller-review-author-name {
  color: #05070d;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-decoration: none;
}

.traveller-review-author-name:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.traveller-review-date {
  color: rgba(4, 20, 41, 0.50);
  font-size: 16px;
  line-height: 1.2;
}

.traveller-review-platform-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 28px;
  height: 28px;
  justify-content: center;
  margin-left: auto;
  position: relative;
  width: 28px;
}

.traveller-review-platform-icon img {
  display: block;
  height: 20px;
  width: 20px;
}

.traveller-review-tooltip {
  background: rgba(4, 20, 41, 0.88);
  border-radius: 6px;
  bottom: calc(100% + 8px);
  color: #fff;
  font-size: 12px;
  left: 50%;
  line-height: 1;
  opacity: 0;
  padding: 6px 8px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.traveller-review-platform-icon:hover .traveller-review-tooltip,
.traveller-review-platform-icon:focus-visible .traveller-review-tooltip {
  opacity: 1;
}

.traveller-review-stars-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.traveller-review-stars {
  color: #f7b500;
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1;
}

.traveller-review-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.traveller-review-toggle {
  display: none;
}

.traveller-review-toggle:checked ~ .traveller-review-text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.traveller-review-read-more {
  margin-top: 12px;
}

.traveller-review-read-more:hover {
  color: var(--color-white);
}

.traveller-review-read-more--close {
  display: none;
}

.traveller-review-card.review-text-fits .traveller-review-read-more {
  display: none;
}

.traveller-review-toggle:checked ~ .traveller-review-read-more--open {
  display: none;
}

.traveller-review-toggle:checked ~ .traveller-review-read-more--close {
  display: inline-flex;
}

/* Highlights */

.highlight-card {
  padding: 20px;
  background: #f2f5fa;
  border-radius: 12px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.highlight-card-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.highlight-tag {
  display: inline-block;
  background: #e9ecef;
  color: #495057;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card-desc {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.highlight-tip-icon {
  margin: 0 0 8px 0;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
  font-style: italic;
}

.highlight-card-location {
  font-size: 12px;
  color: #007bff;
  font-weight: 500;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.highlight-item {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-item:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
}

.highlight-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.highlight-subtitle {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.highlight-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.highlight-tip {
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  margin: 0 0 10px 0;
}

.highlight-location {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 500;
}

/* Similar and nearby places */

.similar-places,
.nearby-places {
  margin-bottom: 30px;
}

.similar-place {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.similar-place:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  text-decoration: none;
  color: inherit;
}

.similar-place-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.similar-place-content {
  padding: 15px;
}

.similar-place-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.similar-place-badge {
  background: var(--secondary);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.similar-place-popularity {
  background: var(--text-muted);
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.similar-place h3 {
  font-size: 16px;
  font-weight: 600;
}

/* Museum Not Found */

.place-not-found {
  text-align: center;
  padding: 100px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 600px;
}

.place-not-found h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 20px;
  font-weight: var(--font-h1-weight);
  line-height: var(--font-h1-line-height);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  color: var(--color-white);
  font-family: var(--font-family-primary);
}

.place-not-found p {
  color: var(--text-muted);
  font-size: var(--font-body-size);
  line-height: 1.6;
  margin-bottom: 30px;
}

.place-not-found .btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--secondary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.place-not-found .btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--color-white);
}

.place-not-found .btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

/* Responsive Design */

@media (max-width: 820px) {
  .place-hero-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    grid-template-areas:
      "place-name"
      "place-media"
      "place-text"
      "place-tickets"
      "performances"
      "tours";
  }

  .place-hero-grid .place-legacy-tickets {
    margin-bottom: 40px;
  }

  .tours-offers {
    margin-bottom: 40px;
    gap: 20px;
  }

  .sort-controls {
    justify-content: center;
  }

  /* Place page mobile layout */
  .place-main-content {
    flex-direction: column !important;
    gap: 30px;
    padding: 0;
    display: flex !important;
  }

  .place-image-container {
    align-self: center;
    width: 100%;
    order: 1 !important;
  }

  .place-image-container img {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .expandable-text {
    order: 2 !important;
  }

  /* Hours and Highlights - Mobile Layout */
  .hours-and-highlights {
    flex-direction: column;
    gap: 30px;
  }

  .opening-hours {
    width: 100%;
  }

  #highlights {
    width: 100%;
  }

  .place-facts-carousel {
    width: 100%;
  }

  .place-facts-carousel .carousel-wrapper .carousel-btn--prev2 {
    left: 8px;
  }

  .place-facts-carousel .carousel-wrapper .carousel-btn--next2 {
    right: 8px;
  }

  .place-media {
    justify-content: center;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .traveller-review-card {
    border-radius: 20px;
    padding: 24px;
  }

  .traveller-review-author-name {
    font-size: 18px;
  }

  .traveller-review-date {
    font-size: 15px;
  }

  .traveller-review-stars {
    }

  /* CSS-only expandable text for mobile */
  .expandable-text {
    position: relative;
  }

  .expand-checkbox {
    display: none;
  }

  .place-description {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.7;
    max-height: calc(1.7em * 3);
    margin-bottom: 0;
  }

  .expand-button {
    position: static;
    bottom: auto;
    right: auto;
    background: transparent;
    color: var(--color-white);
    padding: 0;
    font-weight: 700;
    font-size: inherit;
    cursor: pointer;
    z-index: auto;
    border-radius: 0;
  }

  .show-less {
    display: none;
  }

  .expand-checkbox:checked + .place-description {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: none;
    overflow: visible;
  }

  .expand-checkbox:checked + .place-description::after {
    display: none;
  }

  .expand-checkbox:checked ~ .show-more {
    display: none !important;
  }

  .expand-checkbox:checked ~ .show-less {
    display: inline-flex !important;
  }
}

header .place-header-content {
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  padding: 40px 20px;
}

.highlights-grid {
  grid-template-columns: 1fr;
}

.opening-hours {
  grid-template-columns: 1fr;
}

@media (max-width: 430px) {
  .places-header {
    padding: 40px 0;
  }

  .place-content {
    padding: 60px 20px;
  }

  .place-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .place-link {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
  }

  header .place-header-content {
    padding: 30px 20px;
  }

  .place-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .traveller-review-card {
    padding: 22px;
  }

  .traveller-review-photo {
    flex-basis: 48px;
    height: 48px;
    width: 48px;
  }

  .traveller-review-author-name {
    font-size: 17px;
  }

  .traveller-review-text {
    font-size: 18px;
  }
}
