/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-white: hsl(0, 100%, 100%);
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-grey-300: hsl(233, 8%, 79%);
    --color-navy-600: hsl(236, 13%, 42%);
    --color-navy-950: hsl(240, 100%, 5%);
    --color-gold: hsl(35, 77%, 62%);
    --color-red: hsl(4, 85%, 63%);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .fixed {
    position: fixed;
  }
  .static {
    position: static;
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .table {
    display: table;
  }
  .w-auto {
    width: auto;
  }
  .resize {
    resize: both;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .bg-navy-950 {
    background-color: var(--color-navy-950);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }
  .text-preset-2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1;
  }
  .text-preset-3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1;
  }
  .text-preset-4 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1;
  }
  .text-preset-6 {
    font-size: 0.93755rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.733;
  }
  .text-gold {
    color: var(--color-gold);
  }
  .text-grey-300 {
    color: var(--color-grey-300);
  }
  .text-navy-600 {
    color: var(--color-navy-600);
  }
  .text-white {
    color: var(--color-white);
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .group-hover\:text-gold {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        color: var(--color-gold);
      }
    }
  }
  .group-hover\:text-red {
    &:is(:where(.group):hover *) {
      @media (hover: hover) {
        color: var(--color-red);
      }
    }
  }
  .sm\:px-20 {
    @media (width >= 40rem) {
      padding-inline: calc(var(--spacing) * 20);
    }
  }
  .sm\:py-8 {
    @media (width >= 40rem) {
      padding-block: calc(var(--spacing) * 8);
    }
  }
  .xl\:flex-row {
    @media (width >= 80rem) {
      flex-direction: row;
    }
  }
  .xl\:px-40 {
    @media (width >= 80rem) {
      padding-inline: calc(var(--spacing) * 40);
    }
  }
  .xl\:py-6 {
    @media (width >= 80rem) {
      padding-block: calc(var(--spacing) * 6);
    }
  }
  .xl\:pt-24 {
    @media (width >= 80rem) {
      padding-top: calc(var(--spacing) * 24);
    }
  }
  .xl\:pb-16 {
    @media (width >= 80rem) {
      padding-bottom: calc(var(--spacing) * 16);
    }
  }
  .xl\:text-preset-1 {
    @media (width >= 80rem) {
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: 0px;
      line-height: 1;
    }
  }
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  src: url("./assets/fonts/Inter-VariableFont_slnt\,wght.ttf") format("truetype");
}
@layer components {
  .menu-icon {
    z-index: 1;
  }
  .hamburger-menu {
    height: 1.25rem;
    width: 2.5rem;
    cursor: pointer;
  }
  .close-menu {
    height: 2rem;
    width: 2rem;
    cursor: pointer;
  }
  .nav-desktop {
    position: unset;
    min-height: unset;
    padding: unset;
    width: unset;
  }
  .nav-desktop > ul {
    display: flex;
  }
  .nav-item {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.33;
    color: var(--color-navy-950);
    &:hover {
      @media (hover: hover) {
        color: var(--color-red);
      }
    }
    &:focus {
      color: var(--color-red);
    }
    &:focus-visible {
      color: var(--color-red);
    }
    @media (width >= 80rem) {
      color: var(--color-navy-600);
    }
  }
  .btn {
    cursor: pointer;
    background-color: var(--color-red);
    padding-inline: calc(var(--spacing) * 8);
    padding-block: calc(var(--spacing) * 2);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 4.38px;
    line-height: 1.714;
    color: var(--color-navy-950);
    text-transform: uppercase;
  }
  .new-stories__article {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: calc(var(--spacing) * 2);
  }
  .articles__article {
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(3, min-content);
    grid-template-areas: "picture number" "picture heading" "picture summary";
    column-gap: 1.5rem;
    row-gap: 0.5rem;
  }
  .articles__article > img {
    grid-area: picture;
    max-height: 8rem;
  }
  .articles__article > h1 {
    grid-area: number;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1;
    color: var(--color-red);
  }
  .articles__article > h2 {
    grid-area: heading;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0px;
    line-height: 1.33;
    color: var(--color-navy-950);
  }
  .articles__article > p {
    grid-area: summary;
    font-size: 0.93755rem;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.733;
    color: var(--color-navy-600);
  }
}
@layer base {
  html {
    font-family: "Inter";
  }
  #hamburger-menu > svg:nth-child(1) {
    width: 2.5rem;
    height: 1.125rem;
  }
  #close-menu > svg:nth-child(1) {
    height: 2rem;
    width: fit-content;
  }
  nav {
    position: fixed;
    background-color: var(--color-white);
    right: 0;
    top: 0;
    padding: calc(1.5rem + 2rem + 5.5rem) 1.25rem 0;
    min-height: 100vh;
    width: 68%;
    @media (width >= 48rem) {
      width: 40%;
    }
  }
  nav > ul {
    display: grid;
    gap: 1.5rem;
  }
  main {
    grid-template-areas: "main-story" "new-stories" "articles";
    row-gap: 4rem;
  }
  hr {
    border-color: var(--color-navy-600);
    margin-block: calc(var(--spacing) * 8);
  }
}
.main__story {
  grid-area: main-story;
  grid-template-areas: "picture" "heading" "summary";
  row-gap: 1.5rem;
}
.main__story > picture {
  grid-area: picture;
}
.main__story > h1 {
  grid-area: heading;
}
.main__story__summary {
  grid-area: summary;
  display: grid;
  grid-template-rows: min-content min-content;
  grid-template-areas: "text" "button-cta";
  row-gap: 1.5rem;
}
.main__btn {
  grid-area: button-cta;
  width: fit-content;
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-navy-950);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-white);
    }
  }
  &:focus {
    background-color: var(--color-navy-950);
  }
  &:focus {
    color: var(--color-white);
  }
  &:focus-visible {
    background-color: var(--color-navy-950);
  }
  &:focus-visible {
    color: var(--color-white);
  }
  &:active {
    background-color: var(--color-navy-950);
  }
  &:active {
    color: var(--color-white);
  }
}
.new-stories {
  grid-area: new-stories;
}
.articles {
  grid-area: articles;
}
.attribution {
  font-size: 11px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.attribution a {
  color: var(--color-navy-950);
  &:hover {
    @media (hover: hover) {
      color: var(--color-red);
    }
  }
  &:focus {
    color: var(--color-red);
  }
}
@media (min-width: 80rem) {
  main {
    grid-template-areas: "main-story main-story new-stories" "main-story main-story new-stories" "articles articles articles";
    grid-template-rows: repeat(3, 1fr);
    column-gap: 2rem;
  }
  .main__story {
    grid-template-areas: "picture picture" "heading summary";
    row-gap: unset;
    column-gap: 2rem;
  }
  .main__story__summary {
    row-gap: 2rem;
  }
  .articles__article {
    row-gap: unset;
  }
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-outline-style: solid;
    }
  }
}
