/* Blog, articles and Yoast breadcrumb integration. */
.breadcrumbs {
  padding-top: 18px;
  padding-bottom: 18px;
  color: #706a63;
  font-size: 12px;
}
.breadcrumbs ol,
.breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #c6beb5; }
.breadcrumbs a { font-weight: 750; color: #38332e; }
.breadcrumbs a:hover { color: var(--pme-orange); }
.breadcrumbs [aria-current="page"] { color: #817a72; }

.blog-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 100, 0, .32), transparent 28%),
    linear-gradient(130deg, #050505 0%, #15100c 58%, #2b1606 100%);
}
.blog-hero::before {
  content: "BLOG";
  position: absolute;
  right: -25px;
  bottom: -65px;
  color: rgba(255,255,255,.025);
  font-size: clamp(140px, 23vw, 330px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
}
.blog-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: 80px;
  padding-block: 72px;
}
.blog-hero h1,
.archive-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: .92;
  letter-spacing: -.065em;
}
.blog-hero h1 em,
.archive-hero h1 em {
  color: var(--pme-orange);
  font-family: Georgia, serif;
  font-weight: 500;
}
.blog-hero__copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.blog-search-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(0,0,0,.48);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}
.blog-search-card > strong { display: block; margin-bottom: 13px; font-size: 20px; }
.blog-search-card > small { display: block; margin-top: 11px; color: rgba(255,255,255,.55); font-size: 11px; }
.search-form {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  overflow: hidden;
  border: 1px solid #dcd5cc;
  border-radius: 12px;
  background: #fff;
}
.search-field {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: #171717;
  background: transparent;
  outline: none;
}
.search-field:focus { box-shadow: inset 0 0 0 2px rgba(255,100,0,.24); }
.search-submit {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--pme-orange-dark);
}
.search-submit:hover { background: var(--pme-orange-dark); }
.search-submit .icon { width: 22px; height: 22px; }

.category-chips {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
}
.category-chips a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--pme-line);
  border-radius: 999px;
  color: #4c4640;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.category-chips a:hover,
.category-chips a.is-active { color: #fff; border-color: var(--pme-orange-dark); background: var(--pme-orange-dark); }
.category-chips span {
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: inherit;
  background: rgba(0,0,0,.08);
  font-size: 9px;
}
.category-chips a.is-active span,
.category-chips a:hover span { background: rgba(255,255,255,.18); }
.blog-index-heading { margin-top: 30px; }
.section-heading__action { display: grid; justify-items: start; gap: 12px; }
.section-heading__action p { margin: 0; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.articles-grid--standard { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9e2da;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(38, 25, 12, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,100,0,.38);
  box-shadow: 0 28px 70px rgba(38, 25, 12, .12);
}
.article-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  min-height: 460px;
}
.article-card__media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 2;
  background: #171717;
}
.article-card--featured .article-card__media { aspect-ratio: auto; min-height: 100%; }
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.article-card:hover .article-card__media img { transform: scale(1.035); }
.article-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 75% 25%, rgba(255,100,0,.45), transparent 24%),
    linear-gradient(145deg, #0a0a0a, #2c2118);
}
.article-card__placeholder span { font-size: 110px; font-weight: 950; letter-spacing: -.09em; }
.article-card__body {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.article-card--featured .article-card__body { justify-content: center; padding: 42px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: #7b746d;
  font-size: 10px;
  font-weight: 700;
}
.article-category {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--pme-orange-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-card__title {
  margin: 16px 0 11px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.article-card--featured .article-card__title { font-size: clamp(34px, 4vw, 53px); }
.article-card__title a:hover { color: var(--pme-orange); }
.article-card__body > p { margin: 0 0 20px; color: var(--pme-muted); font-size: 13px; }
.article-card__body > .text-link { margin-top: auto; }

.archive-hero {
  color: #fff;
  background:
    radial-gradient(circle at 86% 25%, rgba(255,100,0,.28), transparent 25%),
    linear-gradient(125deg, #070707, #241307);
}
.archive-hero__inner { min-height: 340px; padding-block: 76px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.archive-hero h1 { font-size: clamp(46px, 6vw, 78px); }
.archive-description { max-width: 720px; color: rgba(255,255,255,.68); }
.archive-hero .search-form { width: min(620px, 100%); margin-top: 26px; }
.archive-toolbar {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.archive-toolbar p { margin: 0; color: var(--pme-muted); font-weight: 750; }
.archive-toolbar .search-form { width: min(430px, 100%); }

.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; }
.pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pme-line);
  border-radius: 10px;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { color: #fff; border-color: var(--pme-orange-dark); background: var(--pme-orange-dark); }
.empty-state {
  max-width: 820px;
  margin-inline: auto;
  padding: 60px 30px;
  border: 1px dashed #d7cfc5;
  border-radius: 24px;
  text-align: center;
  background: #faf7f3;
}
.empty-state__mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--pme-orange-dark), #b93e00);
  font-weight: 950;
  font-size: 25px;
}
.empty-state h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.empty-state p { color: var(--pme-muted); }
.empty-state .search-form { max-width: 520px; margin: 24px auto 0; }

.home-blog-section { background: #fff; }
.home-articles-grid .article-card { height: 100%; }
.blog-placeholder {
  min-height: 220px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 22px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.66)),
    url('../images/cta-room.jpg') center / cover no-repeat;
  box-shadow: var(--pme-shadow);
}
.blog-placeholder span { color: var(--pme-yellow); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.blog-placeholder h3 { max-width: 700px; margin: 8px 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.04; }
.blog-placeholder p { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); }

.article-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,100,0,.18), transparent 28%),
    linear-gradient(135deg, #070707, #1a110b);
}
.article-hero__inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
  padding-block: 68px;
}
.article-hero h1 {
  margin: 18px 0;
  max-width: 800px;
  font-size: clamp(48px, 6vw, 80px);
  line-height: .96;
  letter-spacing: -.055em;
}
.article-deck { max-width: 680px; color: rgba(255,255,255,.72); font-size: 17px; }
.article-byline {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.63);
  font-size: 11px;
}
.article-byline a { color: #fff; font-weight: 800; }
.article-hero__media {
  margin: 0;
  overflow: hidden;
  min-height: 440px;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0,0,0,.36);
  background: #222;
}
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__placeholder { display: grid; place-items: center; color: rgba(255,255,255,.08); background: linear-gradient(145deg, #1a1a1a, #3a1904); }
.article-hero__placeholder span { font-size: 180px; font-weight: 950; letter-spacing: -.1em; }
.article-section { padding: 80px 0; }
.article-layout {
  display: grid;
  grid-template-columns: 72px minmax(0, 760px) minmax(240px, 310px);
  justify-content: center;
  gap: 46px;
  align-items: start;
}
.article-share {
  position: sticky;
  top: 130px;
  display: grid;
  justify-items: center;
  gap: 9px;
}
.article-share strong { margin-bottom: 4px; color: #777069; font-size: 9px; text-transform: uppercase; }
.article-share a,
.article-share button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--pme-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #25211e;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
}
.article-share a:hover,
.article-share button:hover { color: #fff; border-color: var(--pme-orange-dark); background: var(--pme-orange-dark); }
.article-content { min-width: 0; font-size: 18px; line-height: 1.82; }
.article-content > :first-child { margin-top: 0; }
.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.65em;
  margin-bottom: .65em;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.article-content h2 { font-size: clamp(31px, 4vw, 47px); }
.article-content h3 { font-size: clamp(25px, 3vw, 34px); }
.article-content p,
.article-content li { color: #3e3934; }
.article-content a { color: var(--pme-orange-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-content img,
.article-content figure,
.article-content .wp-block-image {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.article-content figure { margin: 34px 0; }
.article-content figcaption { margin-top: 9px; color: #817a73; font-size: 11px; text-align: center; }
.article-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--pme-orange);
  border-radius: 0 16px 16px 0;
  background: #fff5e8;
}
.article-content blockquote p { margin: 0; color: #342b23; font-size: 21px; font-weight: 650; }
.article-content table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.article-content th,
.article-content td { padding: 12px; border: 1px solid #ddd6ce; text-align: left; }
.article-content th { background: #f6f1eb; }
.article-content pre { max-width: 100%; overflow-x: auto; padding: 20px; border-radius: 12px; color: #fff; background: #111; }
.article-content .alignwide { width: min(1100px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-content .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-tags { margin-top: 45px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--pme-line); }
.article-tags strong { margin-right: 4px; font-size: 12px; }
.article-tags a { padding: 7px 10px; border-radius: 999px; color: #4b4540; background: #f3eee8; font-size: 10px; text-decoration: none; }
.article-sidebar { position: sticky; top: 130px; }
.article-contact-card {
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,100,0,.45), transparent 24%),
    linear-gradient(145deg, #111, #292119);
  box-shadow: 0 20px 60px rgba(0,0,0,.17);
}
.article-contact-card > span { color: var(--pme-yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.article-contact-card h2 { margin: 10px 0; font-size: 30px; line-height: 1.04; }
.article-contact-card p { color: rgba(255,255,255,.68); font-size: 13px; }
.post-navigation {
  padding-top: 25px;
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--pme-line);
}
.post-navigation > div:last-child { text-align: right; }
.post-navigation small { display: block; margin-bottom: 5px; color: #817a72; font-size: 9px; text-transform: uppercase; }
.post-navigation a { max-width: 480px; display: inline-block; font-weight: 850; line-height: 1.2; }
.post-navigation a:hover { color: var(--pme-orange); }
.related-posts .section-heading { align-items: center; }
.comments-section { padding: 0 0 90px; }
.article-comments { max-width: 860px; }
.comments-area { padding: 36px; border: 1px solid var(--pme-line); border-radius: 22px; background: #fff; }
.comment-list { padding-left: 0; list-style: none; }
.comment-list .comment { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--pme-line); }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-form { display: grid; gap: 14px; }
.comment-form input,
.comment-form textarea { width: 100%; padding: 12px; border: 1px solid #d9d3cc; border-radius: 10px; }
