/**
 * Block Styles — Zahnteam Hoppe
 *
 * Styles standard WordPress blocks (heading, paragraph, image, list,
 * columns, separator, shortcode) so they look professional inside
 * each page-section context.
 */

/* ═══════════════════════════════════════════════════════════
   GENERAL — .page-content (Impressum, Datenschutz, fallback)
   ═══════════════════════════════════════════════════════════ */
.page-content .container {
    max-width: 900px;
}

.page-content .wp-block-heading {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content .wp-block-heading:first-child {
    margin-top: 0;
}

.page-content h2 {
    font-size: 1.75rem;
    color: var(--color-primary, #e2a60d);
}

.page-content h3 {
    font-size: 1.3rem;
    color: var(--color-heading, #1a1a1a);
}

.page-content .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
}

.page-content .wp-block-list {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.page-content .wp-block-list li {
    margin-bottom: 0.35rem;
}

.page-content .wp-block-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.page-content .wp-block-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted, #888);
    margin-top: 0.5rem;
}

.page-content .wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border, #e5e7eb);
    margin: 3rem 0;
}

.page-content .wp-block-columns {
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════ */
.team-section .container {
    max-width: 1100px;
}

.team-section .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.team-section .wp-block-heading:first-child {
    margin-top: 0;
}

.team-section h2 {
    font-size: 1.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--color-heading, #1a1a1a);
}

.team-section .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
    font-size: 1.05rem;
}

.team-section .wp-block-columns {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-section .wp-block-image {
    margin-bottom: 0.75rem;
}

.team-section .wp-block-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.team-section .wp-block-image figcaption {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading, #1a1a1a);
    margin-top: 0.75rem;
}

.team-section .wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border, #e5e7eb);
    margin: 3rem 0;
}

/* ═══════════════════════════════════════════════════════════
   ROOMS SECTION
   ═══════════════════════════════════════════════════════════ */
.rooms-section .container {
    max-width: 1200px;
}

.rooms-section .wp-block-heading {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.rooms-section h3 {
    font-size: 1.15rem;
    color: var(--color-heading, #1a1a1a);
}

.rooms-section .wp-block-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text, #444);
    margin-bottom: 0;
}

.rooms-section .wp-block-columns {
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rooms-section .wp-block-column {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding-bottom: 1.25rem;
}

.rooms-section .wp-block-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rooms-section .wp-block-image {
    margin-bottom: 0;
}

.rooms-section .wp-block-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.rooms-section .wp-block-column > .wp-block-heading,
.rooms-section .wp-block-column > .wp-block-paragraph,
.rooms-section .wp-block-column > p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

/* ═══════════════════════════════════════════════════════════
   CAREER SECTION
   ═══════════════════════════════════════════════════════════ */
.career-section .container {
    max-width: 1000px;
}

.career-section .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.career-section .wp-block-heading:first-child {
    margin-top: 0;
}

.career-section h2 {
    font-size: 1.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--color-heading, #1a1a1a);
    text-align: center;
}

.career-section h3 {
    font-size: 1.3rem;
    color: var(--color-primary, #e2a60d);
    text-align: left;
    margin-top: 2rem;
}

.career-section .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
}

.career-section .wp-block-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.career-section .wp-block-list li {
    background: var(--color-bg-warm, #faf7f2);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.career-section .wp-block-list li::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--color-primary, #e2a60d);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.career-section .wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border, #e5e7eb);
    margin: 3rem 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-section .container {
    max-width: 1000px;
}

.contact-section .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--color-heading, #1a1a1a);
}

.contact-section .wp-block-heading:first-child {
    margin-top: 0;
}

.contact-section .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text, #444);
}

.contact-section .wp-block-paragraph a {
    color: var(--color-primary, #e2a60d);
    font-weight: 600;
    text-decoration: none;
}

.contact-section .wp-block-paragraph a:hover {
    text-decoration: underline;
}

.contact-section .wp-block-columns {
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL
   ═══════════════════════════════════════════════════════════ */
.service-detail .service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail .wp-block-heading {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail .wp-block-heading:first-child {
    margin-top: 0;
}

.service-detail h2 {
    font-size: 1.5rem;
    color: var(--color-primary, #e2a60d);
    font-family: var(--font-heading, 'Playfair Display', serif);
}

.service-detail .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
    font-size: 1.05rem;
}

.service-detail .wp-block-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.service-detail .wp-block-list {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION (Leistungen overview page)
   ═══════════════════════════════════════════════════════════ */
.services-section .wp-block-heading {
    margin-top: 0;
    margin-bottom: 1rem;
}

.services-section .wp-block-paragraph {
    line-height: 1.8;
    color: var(--color-text, #444);
}

/* ═══════════════════════════════════════════════════════════
   WELCOME SECTION (Homepage about text)
   ═══════════════════════════════════════════════════════════ */
.welcome-section .wp-block-heading {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-heading, #1a1a1a);
}

.welcome-section .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text, #444);
}

/* ═══════════════════════════════════════════════════════════
   BOOKING SECTION
   ═══════════════════════════════════════════════════════════ */
.booking-section .wp-block-shortcode {
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE GROUP BLOCKS (frontend)
   These match the CSS classes set on wp:group blocks in the
   homepage post_content for visual section styling.
   ═══════════════════════════════════════════════════════════ */

/* Hero section — warm, centered, typography-focused (dentologie-inspired) */
.hero-section-block {
  background: var(--color-bg-warm, #fdfaf4);
  color: var(--color-dark, #1a2332);
  padding: 0;
  margin-bottom: 0;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Tagline above heading */
.hero-section-block > p.section-label-block {
  margin: 0 !important;
  max-width: 100% !important;
  padding: calc(var(--header-height, 80px) + 4rem) 2rem 0.75rem;
  color: #e2a60d !important;
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

/* Main heading — large, elegant serif */
.hero-section-block > h1.wp-block-heading,
.hero-section-block > h2.wp-block-heading {
  margin: 0 auto !important;
  max-width: 820px !important;
  padding: 0 2rem;
  color: var(--color-dark, #1a2332);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.2s;
}

/* Subtitle paragraph */
.hero-section-block > p:not(.section-label-block) {
  margin: 0 auto !important;
  max-width: 560px !important;
  padding: 1.25rem 2rem 2.5rem;
  color: var(--color-text-light, #64748b);
  font-size: 1.1rem;
  line-height: 1.7;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.3s;
}

/* Hero image — full width with rounded top + subtle shadow */
.hero-section-block > .wp-block-image,
.hero-section-block > figure.wp-block-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 0 2rem 0;
  position: relative;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-section-block > .wp-block-image img,
.hero-section-block > figure.wp-block-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.08);
}

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

/* Feature list (checkmark badges) — used in about section */
ul.hero-feature-list {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-left: 0 !important;
  margin-top: 1.25rem !important;
}

ul.hero-feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fef8e7;
  border: 1px solid rgba(226,166,13,0.3);
  color: var(--color-dark, #1a2332);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

ul.hero-feature-list li::before {
  content: '✓';
  color: #e2a60d;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Stats row (if present) */
.hero-section-block > .wp-block-columns {
  grid-column: 1;
  grid-row: 4;
  padding: 0 4rem 4rem;
  margin: 0 !important;
  max-width: 100% !important;
  display: flex;
  gap: 2.5rem;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
  .hero-section-block > p.section-label-block {
    padding-top: calc(var(--header-height, 64px) + 2.5rem);
  }

  .hero-section-block > h1.wp-block-heading,
  .hero-section-block > h2.wp-block-heading {
    font-size: clamp(2rem, 7vw, 3rem);
    padding: 0 1.25rem;
  }

  .hero-section-block > p:not(.section-label-block) {
    padding: 1rem 1.25rem 2rem;
    font-size: 1rem;
  }

  .hero-section-block > .wp-block-image,
  .hero-section-block > figure.wp-block-image {
    padding: 0 1rem;
  }

  .hero-section-block > .wp-block-image img,
  .hero-section-block > figure.wp-block-image img {
    max-height: 320px;
    border-radius: 12px 12px 0 0;
  }
}

/* Section label paragraphs */
.section-label-block {
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary, #e2a60d);
  margin-bottom: 0.5rem !important;
}

/* Services section */
.services-section-block {
  background: var(--color-bg, #fff);
  padding: 5rem 2rem;
  text-align: center;
}

.services-section-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.services-section-block > .wp-block-shortcode {
  text-align: left;
}

/* About section */
.about-section-block {
  background: var(--color-bg-warm, #fdfcfa);
  padding: 5rem 2rem;
}

.about-section-block .wp-block-columns {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
}

.about-section-block .wp-block-image img {
  border-radius: 16px;
  min-height: 350px;
  object-fit: cover;
}

.about-section-block .section-label-block {
  margin-bottom: 0.5rem !important;
}

/* Highlights section */
.highlights-section-block {
  background: var(--color-bg, #fff);
  padding: 5rem 2rem;
  text-align: center;
}

/* Reviews section */
.reviews-section-block {
  background: var(--color-bg-alt, #f5f7fa);
  padding: 5rem 2rem;
  text-align: center;
}

/* Booking section */
.booking-section-block {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.booking-section-block h2 {
  color: #fff;
}

.booking-section-block p {
  color: rgba(255,255,255,0.7);
}

.booking-section-block .section-label-block {
  color: var(--color-accent, #e2a60d) !important;
}

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION BLOCK (wp:group className)
   ═══════════════════════════════════════════════════════════ */
.team-section-block {
    max-width: 1100px;
    margin: 0 auto;
}

.team-section-block .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.team-section-block .wp-block-heading:first-child {
    margin-top: 0;
}

.team-section-block h2 {
    font-size: 1.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--color-heading, #1a1a1a);
}

.team-section-block .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
    font-size: 1.05rem;
}

.team-section-block .wp-block-columns {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-section-block .wp-block-image {
    margin-bottom: 0.75rem;
}

.team-section-block .wp-block-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.team-section-block .wp-block-image figcaption {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading, #1a1a1a);
    margin-top: 0.75rem;
}

.team-section-block .wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border, #e5e7eb);
    margin: 3rem 0;
}

/* ═══════════════════════════════════════════════════════════
   ROOMS SECTION BLOCK (wp:group className)
   ═══════════════════════════════════════════════════════════ */
.rooms-section-block {
    max-width: 1200px;
    margin: 0 auto;
}

.rooms-section-block .wp-block-heading {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.rooms-section-block h3 {
    font-size: 1.15rem;
    color: var(--color-heading, #1a1a1a);
}

.rooms-section-block .wp-block-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text, #444);
    margin-bottom: 0;
}

.rooms-section-block .wp-block-columns {
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rooms-section-block .wp-block-column {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding-bottom: 1.25rem;
}

.rooms-section-block .wp-block-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rooms-section-block .wp-block-image {
    margin-bottom: 0;
}

.rooms-section-block .wp-block-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.rooms-section-block .wp-block-column > .wp-block-heading,
.rooms-section-block .wp-block-column > .wp-block-paragraph,
.rooms-section-block .wp-block-column > p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

/* ═══════════════════════════════════════════════════════════
   CAREER SECTION BLOCK (wp:group className)
   ═══════════════════════════════════════════════════════════ */
.career-section-block {
    max-width: 1000px;
    margin: 0 auto;
}

.career-section-block .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.career-section-block .wp-block-heading:first-child {
    margin-top: 0;
}

.career-section-block h2 {
    font-size: 1.75rem;
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--color-heading, #1a1a1a);
    text-align: center;
}

.career-section-block h3 {
    font-size: 1.3rem;
    color: var(--color-primary, #e2a60d);
    text-align: left;
    margin-top: 2rem;
}

.career-section-block .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--color-text, #444);
}

.career-section-block .wp-block-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.career-section-block .wp-block-list li {
    background: var(--color-bg-warm, #faf7f2);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.career-section-block .wp-block-list li::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--color-primary, #e2a60d);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.career-section-block .wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border, #e5e7eb);
    margin: 3rem 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION BLOCK (wp:group className)
   ═══════════════════════════════════════════════════════════ */
.contact-section-block {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section-block .wp-block-heading {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    color: var(--color-heading, #1a1a1a);
}

.contact-section-block .wp-block-heading:first-child {
    margin-top: 0;
}

.contact-section-block .wp-block-paragraph {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text, #444);
}

.contact-section-block .wp-block-paragraph a {
    color: var(--color-primary, #e2a60d);
    font-weight: 600;
    text-decoration: none;
}

.contact-section-block .wp-block-paragraph a:hover {
    text-decoration: underline;
}

.contact-section-block .wp-block-columns {
    gap: 2rem;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE CARD BLOCKS (editable cards on homepage)
   ═══════════════════════════════════════════════════════════ */
.service-cards-row {
  gap: 1.25rem !important;
  margin-bottom: 1.25rem;
}

.service-card-block {
  background: #fff;
  border: 1px solid var(--color-border, #e2e8f0);
  border-radius: var(--radius-md, 12px);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary, #e2a60d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: transparent;
}

.service-card-block:hover::before {
  transform: scaleX(1);
}

.card-icon-img {
  align-self: center;
  display: flex;
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0.75rem !important;
  text-align: center;
  width: 100%;
}

.card-icon-img img {
  display: block;
  width: 56px !important;
  height: 56px !important;
  border-radius: 0 !important;
  object-fit: contain;
}

.highlight-card-block .card-icon-img img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 0 !important;
  filter: none;
  opacity: 1;
}

.card-link {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-link a {
  color: var(--color-primary, #e2a60d);
  text-decoration: none;
  transition: color 0.2s;
}

.card-link a:hover {
  color: var(--color-primary-dark, #b8820a);
}

.highlight-card-block .card-link a {
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.highlight-card-block .card-link a:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}

.service-card-block h3 {
  font-size: 1.1rem;
  font-family: var(--font-heading, 'Playfair Display', serif);
  color: var(--color-dark, #1a2332);
  margin-bottom: 0.4rem;
}

.service-card-block p {
  font-size: 0.88rem;
  color: var(--color-text-light, #64748b);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HIGHLIGHT CARD BLOCKS (editable colored cards)
   ═══════════════════════════════════════════════════════════ */
.highlight-cards-row {
  gap: 1.5rem !important;
  max-width: var(--wp--style--global--wide-size, 1100px) !important;
  flex-wrap: wrap !important;
}

.highlight-card-block {
  border-radius: var(--radius-lg, 20px);
  padding: 1.75rem 1.25rem;
  color: #fff;
  min-height: 0;
  flex: 1 1 200px !important;
  max-width: 280px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-card-block:hover {
  transform: translateY(-4px);
}

.highlight-card-block h3 {
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font-heading, 'Playfair Display', serif);
  margin-bottom: 0.5rem;
}

.highlight-card-block p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.highlight-card-1 { background: linear-gradient(135deg, #e2a60d, #c49009); }
.highlight-card-2 { background: linear-gradient(135deg, #1a2332, #2c3e50); }
.highlight-card-3 { background: linear-gradient(135deg, #b8820a, #8f6208); }
.highlight-card-4 { background: linear-gradient(135deg, #2c3e50, #3d5166); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .rooms-section .wp-block-columns,
    .rooms-section-block .wp-block-columns {
        flex-direction: column;
    }

    .team-section .wp-block-columns,
    .team-section-block .wp-block-columns {
        flex-direction: column;
    }

    .team-section .wp-block-image img,
    .team-section-block .wp-block-image img {
        aspect-ratio: 4 / 3;
    }

    .career-section .wp-block-list,
    .career-section-block .wp-block-list {
        grid-template-columns: 1fr;
    }

    .career-section h2,
    .career-section-block h2 {
        font-size: 1.5rem;
    }

    .rooms-section .wp-block-image img,
    .rooms-section-block .wp-block-image img {
        height: 200px;
    }

    .service-cards-row,
    .highlight-cards-row {
        flex-direction: column;
    }

    .service-card-block,
    .highlight-card-block {
        min-height: auto;
    }
}
