/*
 Theme Name:   Hospitality Plate Blog
 Theme URI:    https://hospitalityplate.co/blog/
 Description:  Standalone WordPress theme for the Hospitality Plate Co. blog. Header and footer use the same Tailwind markup and CSS as hospitalityplate.co.
 Author:       Hospitality Plate Co.
 Author URI:   https://hospitalityplate.co/
 Version:      2.2.6
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hospitality-plate-blog
*/

:root {
  --hpc-deep-navy: #213975;
  --hpc-warm-gold: #f4d03f;
  --hpc-soft-ivory: #e4d4ac;
  --hpc-rich-tan: #c9bda0;
  --hpc-elegant-brown: #976960;
  --hpc-slate-grey: #3c3f57;
  --hpc-warm-white: #fdfdfd;
  --hpc-header-height: 6rem;
  --hpc-radius: 12px;
  --hpc-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --hpc-font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hpc-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

html,
body,
body.et_divi_theme,
body.et_boxed_layout,
#page-container,
#et-main-area,
#et-boc,
#et-boc * {
  box-sizing: border-box;
}

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

main {
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

body,
body.et_divi_theme,
body.et_boxed_layout,
#page-container,
#et-main-area,
#et-boc,
.hpc-nav,
.hpc-nav a,
.hpc-nav button,
.hpc-footer,
.hpc-footer a,
.hpc-footer p,
.hpc-footer li,
.hpc-btn,
.hpc-filter,
.hpc-card__excerpt,
.hpc-card__more,
.hpc-article__content,
.hpc-article__meta {
  font-family: var(--hpc-font-sans) !important;
  letter-spacing: normal;
  text-transform: none;
}

body,
body.et_divi_theme {
  color: var(--hpc-slate-grey);
  background: #fff !important;
  margin: 0 !important;
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.et_pb_module h1,
.et_pb_module h2,
.et_pb_module h3,
.et_pb_module h4,
.et_pb_module h5,
.et_pb_module h6,
.hpc-hero h1,
.hpc-hero h2,
.hpc-card h2,
.hpc-card h3,
.hpc-cta h2,
.hpc-related h2 {
  font-family: var(--hpc-font-serif) !important;
  color: var(--hpc-deep-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.hpc-hero h1,
.hpc-hero h2 {
  color: #fff !important;
}

.hpc-footer h3,
.hpc-footer h4 {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  color: var(--hpc-deep-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--hpc-warm-gold);
}

#main-header,
#top-header,
footer#main-footer,
.et-l--header,
.et-l--footer,
#et-secondary-menu,
.et_header_style_left #et-top-navigation {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.et_fixed_nav,
body.et_fixed_nav.et_secondary_nav_enabled {
  padding-top: 0 !important;
}

/* Divi boxed layout: force page-wide like hospitalityplate.co */
body.et_boxed_layout #page-container,
body.et_boxed_layout.et_fixed_nav #page-container,
#page-container,
#et-main-area,
#et-boc {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.et_fixed_nav #page-container,
body.et_fixed_nav.et_secondary_nav_enabled #page-container,
body.et_fixed_nav #page-container #et-main-area {
  padding-top: 0 !important;
}

.hpc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hpc-sr-only:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  z-index: 80;
  background: var(--hpc-warm-gold);
  color: var(--hpc-deep-navy);
  border-radius: 8px;
}

/* Same width behavior as Tailwind `container mx-auto px-4` on the marketing site */
.hpc-container {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .hpc-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .hpc-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .hpc-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .hpc-container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .hpc-container {
    max-width: 1536px;
  }
}

/* Header — hospitalityplate.co `nav.fixed` + inner Tailwind `h-24`.
   overflow must stay visible: the live logo can sit flush with the bar. */
.hpc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hpc-header-height);
  max-height: var(--hpc-header-height);
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(253, 253, 253, 0.2);
  padding: 0;
  margin: 0;
  line-height: 1;
  overflow: visible;
}

.hpc-nav,
.hpc-nav a,
.hpc-nav button,
.hpc-nav span,
.hpc-nav div {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.hpc-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--hpc-header-height);
  max-height: var(--hpc-header-height);
  min-height: 0;
  padding: 0;
  margin: 0;
  line-height: 1;
  flex-wrap: nowrap;
  gap: 1rem;
}

.hpc-nav__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.hpc-nav__logo img {
  height: 5rem;
  width: auto;
  max-height: 5rem;
  max-width: none;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
}

.hpc-nav__links {
  display: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.hpc-nav__links a:not(.hpc-btn) {
  font-family: var(--hpc-font-sans) !important;
  color: var(--hpc-slate-grey) !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  white-space: nowrap;
}

.hpc-nav__links a:not(.hpc-btn):hover,
.hpc-nav__links a:not(.hpc-btn).is-active {
  color: var(--hpc-warm-gold) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hpc-btn {
  display: inline-block;
  background: var(--hpc-warm-gold) !important;
  color: #fff !important;
  font-family: var(--hpc-font-sans) !important;
  font-weight: 600 !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 8px !important;
  border: 0 !important;
  cursor: pointer;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.hpc-btn:hover {
  background: var(--hpc-elegant-brown);
  color: #fff !important;
}

.hpc-btn--navy {
  background: var(--hpc-deep-navy);
  color: #fff !important;
}

.hpc-btn--navy:hover {
  background: var(--hpc-slate-grey);
}

.hpc-btn--lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.hpc-nav__toggle {
  display: block;
  background: none;
  border: 0;
  padding: 0.25rem;
  color: var(--hpc-slate-grey);
  cursor: pointer;
}

.hpc-nav__toggle:hover {
  color: var(--hpc-warm-gold);
}

.hpc-nav__toggle i,
.hpc-nav__toggle svg,
.hpc-float svg,
.hpc-float i {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.hpc-mobile-menu {
  display: none;
  position: absolute;
  top: var(--hpc-header-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(244, 208, 63, 0.2);
  box-shadow: var(--hpc-shadow);
}

.hpc-mobile-menu.is-open {
  display: block;
}

.hpc-mobile-menu__inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hpc-mobile-menu a {
  color: var(--hpc-slate-grey);
}

.hpc-mobile-menu a:hover,
.hpc-mobile-menu a.is-active {
  color: var(--hpc-warm-gold);
}

@media (min-width: 1024px) and (max-width: 1279px) {
  :root {
    --hpc-header-height: 5rem;
  }

  .hpc-nav,
  .hpc-nav__inner {
    height: 5rem;
    max-height: 5rem;
  }

  .hpc-nav__logo img {
    height: 4rem;
    max-height: 4rem;
  }

  .hpc-mobile-menu {
    top: 5rem;
  }
}

@media (min-width: 1280px) {
  .hpc-nav__links {
    display: flex;
    gap: 1rem;
  }

  .hpc-nav__toggle,
  .hpc-mobile-menu,
  .hpc-mobile-menu.is-open {
    display: none !important;
  }

  .hpc-nav__logo img {
    height: 6rem;
    max-height: 6rem;
  }

  .hpc-nav__links a:not(.hpc-btn),
  .hpc-btn {
    font-size: 1rem !important;
  }

  .hpc-btn {
    padding: 0.5rem 1rem !important;
  }
}

@media (min-width: 1536px) {
  .hpc-nav__logo img {
    height: 7rem;
    max-height: 7rem;
  }

  .hpc-nav__links {
    gap: 2rem;
  }
}

/* Blog chrome — hero carries the fixed-nav offset (Theme Builder discards header.php wrappers). */
.hpc-main {
  padding-top: 0;
  min-height: 60vh;
}

.hpc-hero {
  width: 100%;
  max-width: none;
  background: linear-gradient(to bottom right, var(--hpc-deep-navy), var(--hpc-slate-grey));
  color: #fff;
  padding: calc(var(--hpc-header-height) + 3rem) 0 3.5rem;
}

.hpc-hero h1,
.hpc-hero h2 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 0.75rem;
}

.hpc-hero p {
  color: var(--hpc-soft-ivory);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0;
  line-height: 1.6;
}

.hpc-hero__accent {
  color: var(--hpc-warm-gold);
}

.hpc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hpc-filter {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 500;
}

.hpc-filter:hover,
.hpc-filter.is-active {
  background: var(--hpc-warm-gold);
  border-color: var(--hpc-warm-gold);
  color: var(--hpc-deep-navy) !important;
}

.hpc-section {
  padding: 4rem 0;
  background: #f7f5ef;
}

.hpc-post {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
  max-width: 100%;
}

.hpc-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.hpc-layout__main,
.hpc-related,
.hpc-sidebar {
  min-width: 0;
}

@media (max-width: 1023px) {
  .hpc-layout {
    display: contents;
  }

  .hpc-layout__main {
    order: 1;
  }

  .hpc-related {
    order: 2;
  }

  .hpc-sidebar {
    order: 3;
  }
}

@media (min-width: 1024px) {
  .hpc-layout {
    grid-template-columns: minmax(0, 1fr) 18.75rem;
  }

  .hpc-sidebar {
    position: sticky;
    top: calc(var(--hpc-header-height) + 1.25rem);
    align-self: start;
  }
}

.hpc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hpc-sidebar__card {
  background: #fff;
  border: 1px solid rgba(60, 63, 87, 0.1);
  border-radius: var(--hpc-radius);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hpc-sidebar__card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  color: var(--hpc-deep-navy);
}

.hpc-sidebar__card p {
  color: var(--hpc-slate-grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.hpc-sidebar__card--cta {
  background: linear-gradient(to bottom right, var(--hpc-deep-navy), var(--hpc-slate-grey));
  border: 0;
}

.hpc-sidebar__card--cta h2,
.hpc-sidebar__card--cta p {
  color: #fff;
}

.hpc-sidebar__card--cta p {
  color: var(--hpc-soft-ivory);
}

.hpc-btn--block {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem !important;
  white-space: normal;
}

.hpc-sidebar__topics {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hpc-sidebar__topics li + li {
  border-top: 1px solid rgba(60, 63, 87, 0.1);
}

.hpc-sidebar__topics a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: var(--hpc-slate-grey);
  font-weight: 500;
}

.hpc-sidebar__topics a:hover {
  color: var(--hpc-warm-gold);
}

.hpc-sidebar__count {
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: rgba(244, 208, 63, 0.25);
  color: var(--hpc-deep-navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hpc-sidebar__more {
  font-weight: 600;
  color: var(--hpc-deep-navy);
}

.hpc-sidebar__more:hover {
  color: var(--hpc-warm-gold);
}

.hpc-layout .hpc-article__wrap {
  max-width: none;
  margin: 0;
}

.hpc-layout .hpc-comments {
  max-width: none;
  margin: 2.5rem 0 0;
}

.hpc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hpc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hpc-layout__main .hpc-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1280px) {
  .hpc-layout__main .hpc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hpc-card {
  background: #fff;
  border-radius: var(--hpc-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  max-width: 100%;
}

.hpc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hpc-shadow);
}

.hpc-card__media {
  display: block;
  aspect-ratio: auto;
  height: auto;
  background: #fff;
  overflow: hidden;
  border-radius: var(--hpc-radius) var(--hpc-radius) 0 0;
}

.hpc-card__media img {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center;
  display: block;
  border-radius: inherit;
  vertical-align: middle;
}

.hpc-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hpc-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--hpc-slate-grey);
  margin-bottom: 0.65rem;
}

.hpc-pill {
  display: inline-block;
  background: rgba(244, 208, 63, 0.2);
  color: var(--hpc-deep-navy);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

.hpc-card h2,
.hpc-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
}

.hpc-card h2 a,
.hpc-card h3 a {
  color: var(--hpc-deep-navy);
}

.hpc-card h2 a:hover,
.hpc-card h3 a:hover {
  color: var(--hpc-elegant-brown);
}

.hpc-card__excerpt {
  color: var(--hpc-slate-grey);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.hpc-card__more {
  color: var(--hpc-deep-navy);
  font-weight: 600;
  font-size: 0.9rem;
}

.hpc-card__more:hover {
  color: var(--hpc-warm-gold);
}

/* Single post */
.hpc-article {
  padding: 3rem 0 4rem;
  background: #f7f5ef;
}

.hpc-article__wrap {
  max-width: 46rem;
  margin: 0 auto;
}

.hpc-article__feature {
  margin: -2rem 0 2rem;
  border-radius: var(--hpc-radius);
  overflow: hidden;
  box-shadow: var(--hpc-shadow);
}

.hpc-article__feature img {
  width: 100%;
  height: auto;
  display: block;
}

.hpc-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  color: var(--hpc-soft-ivory);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.hpc-article__meta a {
  color: var(--hpc-warm-gold);
}

.hpc-article__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--hpc-slate-grey);
}

.hpc-article__content > *:first-child {
  margin-top: 0;
}

.hpc-article__content p {
  margin: 0 0 1.25rem;
}

.hpc-article__content h1,
.hpc-article__content h2,
.hpc-article__content h3,
.hpc-article__content h4 {
  color: var(--hpc-deep-navy);
  font-family: var(--hpc-font-serif) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hpc-article__content h1 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}

.hpc-article__content h2 {
  font-size: 1.75rem;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--hpc-warm-gold);
}

.hpc-article__content h3 {
  font-size: 1.35rem;
  margin: 2.15rem 0 0.75rem;
}

.hpc-article__content h4 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.6rem;
}

.hpc-article__content a {
  color: var(--hpc-deep-navy);
  text-decoration: underline;
  text-decoration-color: var(--hpc-warm-gold);
  text-underline-offset: 3px;
}

.hpc-article__content a:hover {
  color: var(--hpc-elegant-brown);
}

.hpc-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--hpc-warm-gold);
  background: rgba(244, 208, 63, 0.08);
  color: var(--hpc-deep-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.hpc-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hpc-article__content ul,
.hpc-article__content ol,
.hpc-article__content .wp-block-list {
  margin: 0 0 1.5rem;
  padding-left: 1.6rem;
  color: var(--hpc-slate-grey);
}

.hpc-article__content ul,
.hpc-article__content ul.wp-block-list {
  list-style-type: disc !important;
  list-style-position: outside;
}

.hpc-article__content ol,
.hpc-article__content ol.wp-block-list {
  list-style-type: decimal !important;
  list-style-position: outside;
}

.hpc-article__content ul ul {
  list-style-type: circle !important;
  margin: 0.4rem 0 0.6rem;
}

.hpc-article__content ol ol {
  list-style-type: lower-alpha !important;
  margin: 0.4rem 0 0.6rem;
}

.hpc-article__content li {
  margin: 0 0 0.55rem;
  padding-left: 0.35rem;
  line-height: 1.65;
}

.hpc-article__content li::marker {
  color: var(--hpc-deep-navy);
  font-weight: 700;
}

.hpc-article__content li p {
  margin: 0 0 0.35rem;
}

.hpc-article__content .wp-block-table,
.hpc-article__content table {
  margin: 0 0 1.75rem;
}

.hpc-article__content {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

.hpc-article__content img,
.hpc-article__feature img,
.hpc-card__media img {
  max-width: 100%;
  height: auto;
}

.hpc-article__content .wp-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hpc-article__content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.hpc-article__content th,
.hpc-article__content td {
  border: 1px solid rgba(60, 63, 87, 0.16);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.hpc-article__content thead th,
.hpc-article__content tr:first-child th,
.hpc-article__content table:not(:has(thead)) > tbody > tr:first-child td {
  background: var(--hpc-deep-navy);
  color: #fff;
  font-family: var(--hpc-font-sans) !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hpc-article__content tbody tr:nth-child(even) {
  background: rgba(244, 208, 63, 0.1);
}

.hpc-article__content tbody tr:hover {
  background: rgba(244, 208, 63, 0.18);
}

.hpc-cta {
  margin: 3rem 0 0;
  padding: 2rem;
  border-radius: var(--hpc-radius);
  background: linear-gradient(to bottom right, var(--hpc-deep-navy), var(--hpc-slate-grey));
  color: #fff;
  text-align: center;
}

.hpc-cta h2 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.hpc-cta p {
  color: var(--hpc-soft-ivory);
  margin: 0 0 1.25rem;
}

.hpc-related {
  display: block;
  visibility: visible;
  padding: 0;
  background: transparent;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.hpc-related h2 {
  margin: 0 0 1.15rem;
  font-size: 1.5rem;
}

.hpc-related .hpc-grid {
  gap: 1.15rem;
}

.hpc-related .hpc-card {
  height: auto;
}

.hpc-related .hpc-card:hover {
  transform: translateY(-4px);
}

.hpc-related .hpc-card__body {
  padding: 0.85rem 1rem 1rem;
}

.hpc-related .hpc-card h2 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hpc-related .hpc-card__excerpt {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0 0 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hpc-related .hpc-card__more {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .hpc-related__scroller {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 0 0.75rem;
    margin: 0;
    scrollbar-width: thin;
  }

  .hpc-related__scroller .hpc-card {
    flex: 0 0 80%;
    width: 80%;
    max-width: 17.5rem;
    min-width: 0;
    scroll-snap-align: start;
  }

  .hpc-related .hpc-card__excerpt {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hpc-related .hpc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Comments */
.hpc-comments {
  max-width: 46rem;
  margin: 0 auto 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(60, 63, 87, 0.12);
}

.hpc-comments h2,
.hpc-comments h3 {
  margin-bottom: 1rem;
}

.comment-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.comment-list .comment {
  margin-bottom: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(60, 63, 87, 0.1);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(60, 63, 87, 0.2);
  border-radius: 8px;
  font-family: Inter, sans-serif;
}

.comment-form .submit {
  background: var(--hpc-warm-gold);
  color: var(--hpc-deep-navy);
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

.comment-form .submit:hover {
  background: var(--hpc-elegant-brown);
  color: #fff;
}

/* Pagination */
.hpc-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.hpc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.7rem;
  border-radius: 8px;
  background: #fff;
  color: var(--hpc-deep-navy);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.hpc-pagination .page-numbers.current,
.hpc-pagination a.page-numbers:hover {
  background: var(--hpc-warm-gold);
  color: var(--hpc-deep-navy);
}

.hpc-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.hpc-empty h1 {
  margin-bottom: 0.75rem;
}

.hpc-search {
  max-width: 28rem;
  margin: 1.5rem auto 0;
  display: flex;
  gap: 0.5rem;
}

.hpc-search input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(60, 63, 87, 0.2);
  border-radius: 8px;
  font-family: Inter, sans-serif;
}

.hpc-hero .hpc-search input[type="search"] {
  border: 0;
}

/* Footer — matches hospitalityplate.co.
   Tailwind on the footer markup owns layout (space-y, gap, py-16).
   Do not add extra heading/paragraph margins here. */
.hpc-footer {
  width: 100%;
  background: var(--hpc-deep-navy);
  color: #fff;
}

.hpc-footer a:hover {
  color: var(--hpc-warm-gold);
}

.hpc-social {
  display: flex;
  gap: 1rem;
}

.hpc-social a {
  color: rgba(255, 255, 255, 0.6);
}

.hpc-social svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.hpc-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.hpc-footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.hpc-footer__legal a {
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .hpc-footer__legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hpc-float {
  position: fixed;
  bottom: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 0;
  box-shadow: var(--hpc-shadow);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hpc-float:hover {
  transform: scale(1.05);
}

.hpc-float--top {
  right: 1.5rem;
  background: var(--hpc-warm-gold);
  color: var(--hpc-deep-navy);
  opacity: 0;
  pointer-events: none;
}

.hpc-float--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hpc-float--cookies {
  left: 1.5rem;
  background: var(--hpc-slate-grey);
  color: #fff;
}

.hpc-float--cookies:hover {
  background: var(--hpc-deep-navy);
}

/* Divi modules used inside posts */
.et_pb_button,
.et_pb_button:hover {
  background-color: var(--hpc-warm-gold) !important;
  color: var(--hpc-deep-navy) !important;
  border: 0 !important;
  border-radius: 8px !important;
  font-family: Inter, sans-serif !important;
  font-weight: 600 !important;
}

.et_pb_button:hover {
  background-color: var(--hpc-elegant-brown) !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hpc-card,
  .hpc-btn,
  .hpc-float {
    transition: none;
  }

  .hpc-card:hover {
    transform: none;
  }
}
