@media screen and (min-width: 1025px) {

 

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1.075rem;
    line-height: 1.78;
    -webkit-font-smoothing: antialiased;
  }

  article {
    max-width: 1100px;               /* narrower for readability – classic editorial width */
    margin: 0 auto;
    padding: 0 5vw 10rem;
  }

 #articleTitle {
    margin: 6rem auto 6rem;
    text-align: center;
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--text);
  }

  #articleTitle::after {
    content: "";
    display: block;
    width: 220px;
    height: 2px;
    margin: 2.8rem auto 0;
    background: linear-gradient(90deg, transparent, var(--silver-dk), transparent);
  }

  article > h1:nth-of-type(2) {     /* the actual article main title */
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 auto 2.5rem;
    max-width: 800px;
    color: var(--text);
  }

  .intro {
    font-family: var(--font-serif);
    font-size: 1.28rem;
    line-height: 1.75;
    color: var(--gray);
    margin: 0 auto 4rem;
    max-width: 780px;
    text-align: center;
    font-style: italic;
  }

  .article {
    border-top: 1px solid var(--line-dk);
    padding-top: 3rem;
  }

  .part {
    margin-bottom: 5rem;
  }

  .part h2.day {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    margin: 0 0 1.8rem;
    color: var(--text);
    position: relative;
    padding-left: 0;
  }

  .part h2.day::before {
    content: "";
    position: absolute;
    left: -70px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--gray);
    transform: translateY(-50%);
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;                     /* two-column layout for better density */
    column-gap: 4rem;
  }

  li {
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    color: var(--text-sec);
    break-inside: avoid;
  }

  .time {
    float: right;
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    margin-left: 1rem;
  }}


@media screen and (min-width: 901px) and (max-width: 1024px) {
  article {
    max-width: 920px;                 /* comfortable reading width */
    padding: 0 6vw 10rem;
    margin: 0 auto;
  }

  #articleTitle {
    margin: 5.5rem auto 2rem;
    font-size: clamp(3.4rem, 6.5vw, 5.0rem);
    letter-spacing: 0.45em;
  }

  article > h1:nth-of-type(2) {
    font-size: 2.55rem;
    max-width: 85%;
  }

  .intro {
    font-size: 1.26rem;
    max-width: 800px;
    line-height: 1.72;
  }

  .article {
    padding-top: 2.8rem;
  }

  .part {
    margin-bottom: 5rem;
  }

  .part h2.day {
    font-size: 2.15rem;
    padding-left: 0;
  }

  .part h2.day::before {
    left: -60px;
    width: 45px;
  }

  ul {
    columns: 2;
    column-gap: 3.8rem;
  }

  li {
    font-size: 1.04rem;
    margin-bottom: 1.05rem;
  }

  .time {
    font-size: 0.94rem;
  }
}

/* ==========================================================================
   769–900 px    (tablets landscape, small laptops / narrow windows, many European mid-range tablets)
=========================================================================== */
@media screen and (min-width: 769px) and (max-width: 900px) {
  article {
    max-width: 860px;
    padding: 0 7vw 9rem;
  }

  #articleTitle {
    margin: 5rem auto 1.8rem;
    font-size: clamp(3.1rem, 6.8vw, 4.6rem);
    letter-spacing: 0.42em;
  }

  article > h1:nth-of-type(2) {
    font-size: 2.4rem;
    max-width: 88%;
  }

  .intro {
    font-size: 1.24rem;
    max-width: 760px;
  }

  .part {
    margin-bottom: 4.5rem;
  }

  .part h2.day {
    font-size: 2.05rem;
  }

  .part h2.day::before {
    left: -55px;
    width: 40px;
  }

  ul {
    columns: 2;
    column-gap: 3.2rem;
  }

  li {
    font-size: 1.03rem;
    margin-bottom: 1rem;
  }

  .time {
    font-size: 0.93rem;
  }
}

/* ==========================================================================
   481–768 px    (tablets portrait, large phones landscape, small tablets)
=========================================================================== */
@media screen and (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 1.08rem;
  }

  article {
    max-width: 100%;
    padding: 0 6.5vw 8rem;
  }

  #articleTitle {
    margin: 4.5rem auto 1.6rem;
    font-size: clamp(2.9rem, 7.5vw, 4.2rem);
    letter-spacing: 0.38em;
  }

  article > h1:nth-of-type(2) {
    font-size: 2.2rem;
    max-width: 92%;
  }

  .intro {
    font-size: 1.2rem;
    max-width: 90%;
    line-height: 1.68;
  }

  .article {
    padding-top: 2.4rem;
  }

  .part {
    margin-bottom: 4rem;
  }

  .part h2.day {
    font-size: 1.95rem;
  }

  /* Optional: hide decorative line on narrower tablet views */
  .part h2.day::before {
    display: none;
  }

  ul {
    columns: 2;
    column-gap: 2.8rem;
  }

  li {
    font-size: 1.02rem;
    margin-bottom: 0.95rem;
  }

  .time {
    font-size: 0.92rem;
    min-width: 80px;                /* helps prevent wrapping on mid-size names */
  }
}

/* ==========================================================================
   345–480 px    (standard smartphones portrait, small–medium phones)
=========================================================================== */
@media screen and (min-width: 345px) and (max-width: 480px) {
  body {
    font-size: 1.05rem;
    line-height: 1.68;
  }

  article {
    padding: 0 5.5vw 7rem;
  }

  #articleTitle {
    margin: 4rem auto 1.4rem;
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    letter-spacing: 0.35em;
  }

  article > h1:nth-of-type(2) {
    font-size: 1.95rem;
    max-width: 94%;
  }

  .intro {
    font-size: 1.14rem;
    max-width: 92%;
  }

  .part {
    margin-bottom: 3.5rem;
  }

  .part h2.day {
    font-size: 1.8rem;
  }

  .part h2.day::before {
    display: none;
  }

  ul {
    columns: 1;                     /* single column – better readability */
  }

  li {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;                /* allows very long names to wrap cleanly */
    gap: 0.6rem;
  }

  .time {
    font-size: 0.9rem;
    white-space: nowrap;
    order: 2;                       /* time below name if wrapping occurs */
    width: 100%;
    text-align: right;
    margin-left: 0;
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 344px) {
  body {
    font-size: 1rem;
    line-height: 1.65;
  }

  article {
    padding: 0 5vw 6rem;
  }

  #articleTitle {
    margin: 3.5rem auto 1.2rem;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
    letter-spacing: 0.3em;
  }

  article > h1:nth-of-type(2) {
    font-size: 1.75rem;
    max-width: 96%;
  }

  .intro {
    font-size: 1.08rem;
    max-width: 94%;
  }

  .part {
    margin-bottom: 3rem;
  }

  .part h2.day {
    font-size: 1.65rem;
  }

  ul {
    columns: 1;
  }

  li {
    font-size: 0.97rem;
    margin-bottom: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .time {
    font-size: 0.88rem;
    width: 100%;
    text-align: left;
    margin-top: 0.3rem;
    margin-left: 0;
  }
}

 :root {
    --bg:        #ffffff;
    --text:      #000000;
    --text-sec:  #333333;
    --gray:      #777777;
    --silver:    #cccccc;
    --silver-dk: #999999;
    --line:      #dddddd;
    --line-dk:   #555555;

    --font-sans:  "Lato", system-ui, sans-serif;
    --font-serif: "EB Garamond", Georgia, serif;
    --font-title: "Bruno Ace SC", serif;
  }