/*!*****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./scss/pages/genericContentPage.scss ***!
  \*****************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap);
/*!*********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./scss/pages/genericContentPage.scss (1) ***!
  \*********************************************************************************************************************************/
:root {
  --primary-color: white;
  --primary-color-dark: color-mix(in srgb, var(--primary-color) 90%, black);
  --primary-color-light: color-mix(in srgb, var(--primary-color) 90%, white);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 800;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 8px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

@media (prefers-contrast: high) {
  .card,
  .btn {
    border: 2px solid;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus {
  outline-offset: 2px;
  outline: none;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline-offset: 2px;
}

.btn,
button,
[role=button],
a,
select,
textarea {
  min-height: 44px;
  min-width: 44px;
}

.btn--icon-only {
  position: relative;
}
.btn--icon-only .sr-only {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.text-low-contrast {
  color: #6c757d;
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-field--error input,
.form-field--error select,
.form-field--error textarea {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-field--success input,
.form-field--success select,
.form-field--success textarea {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.live-region {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

table {
  caption-side: top;
}

th {
  text-align: left;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
}

.card--link {
  position: relative;
}
.card--link:focus-within {
  outline-offset: 2px;
}
.card--link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.card--link a,
.card--link button {
  position: relative;
  z-index: 2;
}

img:not([alt]) {
  outline: 2px solid red;
}

video:focus {
  outline-offset: 2px;
}

@media print {
  .skip-link,
  .sr-only {
    display: none !important;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
}
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1em;
}
@media screen and (max-width: calc(1300px - 1px)) {
  body {
    font-size: 0.87em;
  }
}

.container {
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}

html,
body {
  min-height: 100%;
  height: auto;
}

body,
html,
div,
article,
aside,
section,
figure,
nav,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
ul,
ol,
dl,
address,
a,
input,
textarea,
button,
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/* reset.scss */
/* Box-sizing border-box globally */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset form elements */
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

/* Ensure buttons are clickable */
button {
  cursor: pointer;
}

/* Remove border on images and ensure max-width */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Set base font smoothing and rendering */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure body fills the viewport */
body {
  min-height: 100vh;
  line-height: 1.5;
  background-color: #fff;
  color: #000;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: 0 0;
  background-color: rgba(88, 86, 80, 0.25);
  border: 2px solid transparent;
  border-radius: 10px;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(88, 86, 80, 0.5);
}

::-webkit-scrollbar-track {
  background-color: rgba(88, 86, 80, 0.05);
}

.post-page {
  margin-bottom: 2rem;
}
.post-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__header {
    padding: 1rem 0;
  }
}
.post-page__breadcrumb a {
  text-decoration: none;
  transition: color 0.2s;
  color: black;
}
.post-page__breadcrumb a:hover {
  color: var(--primary-color);
}
.post-page__share {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.post-page__share-title {
  font-size: 0.87em;
  font-weight: 300;
  margin: 0;
}
.post-page__share-icon-list {
  color: #94945c;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
.post-page__share-icon-list li {
  margin-bottom: 0px;
  list-style: none;
}
.post-page__share-icon-list a {
  color: inherit;
  transition: color 0.2s;
}
.post-page__share-icon-list a:hover {
  color: black;
}
.post-page__share svg, .post-page__share sl-icon {
  width: 2rem;
  height: 2rem;
}
.post-page__hero {
  max-width: 960px;
}
.post-page__hero-image {
  max-width: 960px;
  max-height: 540px;
}
.post-page__hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__hero-details {
    padding: 1.5rem 0;
  }
}
.post-page__topic-date {
  width: 100%;
}
.post-page__topic {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
}
.post-page__topic:hover {
  text-decoration: underline;
}
.post-page__topic, .post-page__date {
  font-size: 0.87em;
  max-width: unset;
}
.post-page__title {
  line-height: 120%;
  font-size: 2.5em;
  text-wrap: balance;
  width: 100%;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__title {
    font-size: 2em;
  }
}
.post-page__sub-title {
  line-height: 140%;
  font-size: 1.5em;
  font-weight: 500;
  text-wrap: pretty;
  width: 100%;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__sub-title {
    font-size: 1.2em;
  }
}
.post-page__by-line {
  line-height: 140%;
  font-size: 0.93em;
  font-style: italic;
  width: 100%;
}
.post-page__cook-time {
  line-height: 140%;
  font-size: 1em;
  font-weight: 600;
  color: var(--primary-color);
  width: 100%;
}
.post-page__main-content {
  width: 100%;
  max-width: 35.375rem;
  margin: 0 auto;
}
.post-page__content-grid {
  display: flex;
  flex-direction: row;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
}
@media screen and (max-width: calc(1300px - 1px)) {
  .post-page__content-grid {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__content-grid {
    padding: 0.5rem 0;
  }
}
.post-page__subscribe {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.post-page__subscribe-title {
  font-size: 0.87em;
  font-weight: 300;
  margin: 0;
}
.post-page__subscribe-icon-list {
  color: #94945c;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
.post-page__subscribe-icon-list li {
  margin-bottom: 0px;
  list-style: none;
}
.post-page__subscribe-icon-list a {
  color: inherit;
  transition: color 0.2s;
}
.post-page__subscribe-icon-list a:hover {
  color: black;
}
.post-page__subscribe svg, .post-page__subscribe sl-icon {
  width: 2rem;
  height: 2rem;
}
.post-page__content-sponsor {
  font-size: 0.87em;
  font-weight: 500;
  font-style: italic;
  text-align: right;
  margin: 0.5rem auto 1.5rem auto;
}
.post-page__related-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  padding-top: 0px;
  padding-right: 5rem;
  margin-top: 0px;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 21.625rem;
}
@media screen and (max-width: calc(1300px - 1px)) {
  .post-page__related-content {
    margin-top: 2rem;
    padding-right: 0px;
    max-width: unset;
  }
}
.post-page__related-content__title {
  margin: unset;
  font-size: 1.5em;
  font-weight: 400;
  border-bottom: 1px solid black;
  padding-bottom: 0.25rem;
  margin-bottom: 0rem;
}
.post-page__related-content__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  padding-top: 0px;
  margin-top: 0px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: calc(1300px - 1px)) {
  .post-page__related-content__content {
    flex-direction: row;
    gap: 1rem;
    padding-right: 0px;
    margin-bottom: 0px;
  }
}
.post-page__related-content__content .card__title {
  font-size: 1.2em;
  margin-bottom: 0.25rem;
}
.post-page__related-content__content .card__body {
  padding: 1rem;
  gap: 0rem;
}
.post-page__related-content__content .card__meta {
  color: #ada18c;
  margin: unset;
}
.post-page__related-content .cards-block {
  flex-direction: column;
  gap: 0rem;
}
.post-page__related-content .cards-block .cards-container {
  position: relative;
  width: 100%;
}
.post-page__content-transcript {
  margin-bottom: 3rem;
}
.post-page__content-transcript details {
  border: 1px solid #D8D8CD;
  padding: 1rem 1.5rem;
}
.post-page__content-transcript summary {
  font-size: 0.85em;
  color: #585650;
  cursor: pointer;
}
.post-page__content-transcript .transcript-body {
  max-height: 37.5rem;
  overflow-y: auto;
  margin-top: 1rem;
  border-top: 1px solid #D8D8CD;
  padding-top: 1rem;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page__content-transcript .transcript-body {
    max-height: 18.75rem;
  }
}
.post-page__content-transcript .transcript-body h1, .post-page__content-transcript .transcript-body h2, .post-page__content-transcript .transcript-body h3, .post-page__content-transcript .transcript-body h4, .post-page__content-transcript .transcript-body h5, .post-page__content-transcript .transcript-body h6 {
  font-size: 1em;
  color: var(--primary-color);
  line-height: 120%;
  margin: 0 auto 1rem auto;
}
.post-page__content-transcript .transcript-body p {
  font-size: 0.85em;
  color: #585650;
  line-height: 150%;
  margin: 0 auto 1.5rem auto;
}
.post-page .featured-block__title, .post-page .recommended-block__title {
  margin: 2rem 0;
  font-size: 1.5em;
  font-weight: 400;
  border-bottom: 1px solid black;
  padding-bottom: 0.25rem;
  margin-bottom: 0rem;
}
.post-page .featured-block__content, .post-page .recommended-block__content {
  display: flex;
  margin: 1.5rem 0;
  gap: 1.5rem;
}
.post-page .featured-block .card__meta, .post-page .recommended-block .card__meta {
  color: #ada18c;
}
.post-page .featured-block__content {
  justify-content: space-around;
  flex-wrap: wrap;
}
.post-page .featured-block .card--horizontal {
  flex-direction: row;
  flex: 0 1 40rem;
  max-height: 18.5rem;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page .featured-block .card--horizontal {
    max-height: 40vw;
  }
}
.post-page .featured-block .card__image, .post-page .featured-block .card__body {
  flex: 1;
}
.post-page .featured-block .card__body {
  justify-content: center;
}
.post-page .featured-block .card__image {
  aspect-ratio: 1/1;
}
.post-page .featured-block .card__image img {
  height: 100%;
}
@media screen and (max-width: calc(480px - 1px)) {
  .post-page .featured-block .card__text {
    display: none;
  }
}
.post-page .featured-block .card__meta {
  color: #585650;
}
.post-page .ad-bottom {
  margin: 0 auto;
}
.post-page .ad-bottom img {
  margin: 0 auto;
}
.post-page .capitalized-text {
  text-transform: capitalize;
}
.post-page .truncate-text-3-lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
