body {
  margin: 0;
  padding: 0;
  background-color: #faeaea;
}

/* HEADER / HERO */

header {
  position: relative;
  height: 500px;
  background: url("pomegranate-fruit.avif") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0px;
}

header .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  right: 10rem;
  bottom: 3rem;
  font-size: 1.2rem;
  width: 50%;
}

header h1 a {
  margin: 0 0 10px;
  width: 80%;
  color: #fff;
  text-decoration: none;
}

h1,
h2,
h3,
.cta-button {
  font-family: "Lora";
}

h3 {
  width: 60%;
  font-size: 20px;
}

/* CTA SECTION */

#cta {
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
  background-color: #f7c0c0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

#cta p {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

/* CTA BUTTON */

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #eb081b;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #8f000c;
  transform: scale(1.05);
}

span a.cta-button {
  padding: 2px 5px;
  font-size: 16px;
}

/* NAV – MOBILE DEFAULT */

.nav-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.hamburger {
  font-size: 4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* menu default e fshehur në mobile */
.nav-menu {
  display: none;
  position: absolute;
  top: 75px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  padding: 0px 10px;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 25px 10px;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.3rem;
}

/* kur është hapur, shfaqe */
.nav-menu.show {
  display: block;
}


/* NAV – DESKTOP (INLINE MENU ON THE LEFT) */
@media (min-width: 900px) {
  .nav-wrapper {
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 3rem;
    display: flex;
    justify-content: flex-start; /* në të majtë */
    align-items: center;
  }

  .hamburger {
    display: none; /* fshi hamburgerin në desktop */
  }

  .nav-menu {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
  }

  .nav-menu ul {
    display: flex;
    gap: 2rem;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
  }
}


.hamburger.active {
  font-size: 4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.hamburger.active::after {
  content: "✖";  
  position: absolute;
  font-size: 3.5rem;
  top: -2px;
  left: -2px;
}

.hamburger.active {
  color: black; 
}




/* MAIN */

/* banner 1 */
.banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0; /
}

.banner-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-wrapper img:hover {
  transform: scale(1.1);
}

main {
  font-family: "Roboto", sans-serif;
}

.section:first-of-type {
  margin-top: 80px; 
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.section.reverse {
  flex-direction: row-reverse;
}


.image {
  flex: 0 0 30%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.image img {
  width: 100%;
  height: 70vh; /* 40% of viewport height */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}


.image img:hover {
  transform: scale(1.05);
}

.text {
  flex: 1;
  min-width: 250px;
  padding: 10px 0;
}

.text p {
  margin-top: 10px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
  max-width: 70ch;
}

h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}

p {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1rem;
  max-width: 70ch;
}

figcaption {
  text-align: left;
  font-size: 0.85rem;
  font-style: italic;
  color: #111111;
  margin: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

figcaption:hover {
  background-color: #f8e9e9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #0e0e0e;
}
/* article */

.new-article {
  text-align: center;
  margin: 3rem 0 2rem;
}


.new-article-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #ff4b6e, #ff7e92);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 12px 25px rgba(255, 75, 110, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.new-article-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(255, 75, 110, 0.45);
}

#article-review {
  max-width: 850px;
  margin: 3rem auto;
  padding: 3rem 3rem;
  background: #ffffff;
  border: 2px solid #f2d0d7;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.08),
}


#article-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: linear-gradient(90deg, #b21737, #d34560);
  border-radius: 50px;
}

#article-review h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 1.5rem;
  color: #a31531;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
}

#article-review p {
  max-width: 88%;
  margin: 1.1rem auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}


#article-review a {
  display: inline-block;
  padding: 0.85rem 2rem;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #b21737, #d34560);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 26px rgba(178, 23, 55, 0.35);
}

#article-review a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(178, 23, 55, 0.45);
}

/* MOBILE */
@media (max-width: 600px) {
  #article-review {
    padding: 2rem 1.5rem;
  }
  #article-review h2 {
    font-size: 1.6rem;
  }
  #article-review p {
    font-size: 1rem;
  }
}


/* What’s New & Exciting section */
#whats-new-exciting {
  max-width: 1000px;
  margin: 4rem auto;
  text-align: center;
}

#whats-new-exciting h2 {
  font-size: 1.9rem;
  margin-bottom: 2rem;
  font-weight: 700;
}


.whats-new-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}


.whats-new-item {
  max-width: 280px;
}

.whats-new-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}


.whats-new-item img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}


.whats-new-item figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}


@media (max-width: 600px) {
  #whats-new-exciting {
    padding: 0 1.5rem;
  }
}


/* PICNIC CARD DESIGN */
.picnic-card {
  max-width: 850px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
  background: #ffffff;
  border-radius: 18px;
  text-align: center;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.picnic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: linear-gradient(90deg, #34d0c3, #5cc7ff);
  border-radius: 50px;
}


.picnic-card h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 1.3rem;
  color: #0b3c46;
}

.picnic-card p {
  max-width: 88%;
  margin: 1rem auto 2rem auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}


.picnic-map {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.picnic-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}


@media (max-width: 600px) {
  .picnic-card {
    padding: 2rem 1.4rem;
  }
  .picnic-card h2 {
    font-size: 1.6rem;
  }
  .picnic-card p {
    font-size: 1rem;
  }
}






/* MANGO */


.sorbet {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.sorbet-card {
  max-width: 100%;
  background-color: #f8d670;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sorbet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


.card-content {
  padding: 1.5rem;
}


.card-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d35400;
  margin-top: 0;
  margin-bottom: 0.75rem;
}


.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}


.cta-button {
  display: inline-block;
  background-color: #dd0606;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #e69500; 
  transform: scale(1.03);
}




/* About me */

.about-me {
  background-color: #fff5f5;
  padding: 2rem 0;
  text-align: left;
  color: #4a1f1f;
  border-top: 1px solid #e0c2c2;
}

.about-me h3 {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 1rem;
}

.about-me p {
  max-width: 1000px;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .about-me {
    padding: 3rem 2rem;
  }

  .about-me h3 {
    font-size: 1.8rem;
  }

  .about-me p {
    font-size: 1.05rem;
  }
}


/* FOOTER */
footer {
  background-color: #111;
  color: #fff;
  padding: 20px;
  font-family: "Lora";
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #eb081b;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 250px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  color: #eb081b;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #eb081b;
  transition: ease-in-out;
}

.footer-social {
  text-align: center;
}

.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-social i {
  font-size: 1.8rem;
  color: #ff0404;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social i:hover {
  color: #e50914;
  transform: scale(1.15);
}

.footer-bottom {
  text-align: left;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* CONTACT US */

.support-container {
  margin: 0;
  font-family: "Lora";
  background-color: #fdf6f6;
  color: #4a1f1f;
}

.page-header h1 {
  color: rgb(255, 255, 255);
  padding: 1.5rem;
  text-align: center;
  position: absolute;
  left: 4rem;
  top: 4rem;
}

.contact-form-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem 1rem;
    }

    .contact-form-section h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #a02020;
      text-align: center;
    }

    .support-info {
      max-width: 400px;
      text-align: center;
      margin-bottom: 2rem;
      font-size: 0.95rem;
      line-height: 1.6;
      color: #5c1f1f;
    }

    .contact-form {
      background-color: #fff;
      border: 1px solid #e0c2c2;
      border-radius: 8px;
      padding: 1.5rem;
      width: 80%;
      max-width: 500px;
      box-shadow: 0 4px 12px rgba(180, 50, 50, 0.1);
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    input[type="text"],
    input[type="email"],
    textarea {
      width: 100%;
      padding: 0.6rem;
      margin-bottom: 1rem;
      border: 1px solid #d8b4b4;
      border-radius: 4px;
      background-color: #fff8f8;
      font-size: 1rem;
    }

    button[type="submit"] {
      background-color: #b22222;
      color: white;
      border: none;
      padding: 0.75rem;
      width: 100%;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button[type="submit"]:hover {
      background-color: #8b1a1a;
    }

    @media (min-width: 768px) {
      .contact-form-section {
        padding: 3rem;
      }

      .contact-form-section h3 {
        font-size: 1.75rem;
      }

      .support-info {
        font-size: 1rem;
      }
    }




@media (min-width: 769px) and (max-width: 1024px) {
  header {
    height: 420px;
    background-position: center 30%;
    padding: 1.5rem;
  }

  header .hero-text {
    right: 0;
    bottom: 0;
    position: relative;
    transform: none;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 0 1rem;
    font-size: 1.05rem;
  }

  header h1 {
    width: 90%;
    font-size: 1.9rem;
    margin-bottom: 6px;
    line-height: 1.12;
  }

  h3 {
    width: 95%;
    font-size: 1.05rem;
  }

  .hamburger {
    font-size: 2.6rem;
  }

  .container {
    max-width: 920px;
    padding: 0 18px;
  }

  .section {
    flex-direction: row;
    gap: 20px;
    padding: 22px;
    border-radius: 10px;
  }

  .section.reverse {
    flex-direction: row-reverse;
  }

  .image {
    flex: 0 0 36%;
  }
  .text {
    flex: 1;
    padding-left: 8px;
  }

  .image img {
    border-radius: 8px;
  }

  .text p,
  p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 60ch;
  }

  #cta {
    padding: 60px 20px;
  }
  .cta-button {
    padding: 13px 34px;
    font-size: 1.08rem;
  }

  aside {
    max-width: 420px;
    margin: 1.5rem 0;
  }

  .footer-container {
    padding: 1rem 18px;
  }
}


@media (max-width: 768px) {
  header {
    height: 420px;
    align-items: center;
    padding: 1.75rem 0.75rem;
    background-position: center 30%;
  }

  header .hero-text {
    right: 0;
    bottom: 0;
    transform: none;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0 1rem;
    font-size: 1rem;
  }

  header h1 {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
  }


  h3 {
    width: 100%;
    font-size: 1rem;
  }

  .hamburger {
    font-size: 2.4rem;
  }

  
  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    padding-top: 4.5rem;
    box-sizing: border-box;
    z-index: 9999;
  }
  .nav-menu.show {
    display: block;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .nav-menu a {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 980px;
  }

  .section {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 18px;
  }
  .section.reverse {
    flex-direction: column;
  }

  .image {
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }
  .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .text {
    padding: 0;
  }
  .text p,
  p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  figcaption {
    font-size: 0.9rem;
  }

  #cta {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  .cta-button {
    padding: 12px 26px;
    font-size: 1rem;
  }

  aside {
    margin: 1.25rem 0;
    max-width: 100%;
    border-radius: 12px;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1rem;
  }
  .footer-social .social-icons {
    flex-direction: row;
    gap: 12px;
  }
  .footer-bottom {
    margin-top: 20px;
    text-align: left;
  }

  .contact-form-section {
    width: 100%;
    margin: 24px 0;
    padding: 16px;
  }
}

/* ---------------------------
   Very small screens: <= 420px
   Minor tweaks for cramped phones
   --------------------------- */
@media (max-width: 420px) {
  header {
    height: 360px;
    padding: 1.25rem 0.6rem;
  }
  header h1 {
    font-size: 1.28rem;
  }
  h3 {
    font-size: 0.95rem;
  }
  .hamburger {
    font-size: 2rem;
  }
  .cta-button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .section {
    padding: 12px;
  }
  .text p,
  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Focus visibility */
.hamburger:focus,
.nav-menu a:focus,
.cta-button:focus {
  outline: 3px solid rgba(235, 8, 27, 0.25);
  outline-offset: 2px;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ORDER NOW */



    .page-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6f6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


    .checkout-form {
      background-color: #fff;
      border: 1px solid #e0c2c2;
      border-radius: 8px;
      padding: 1.5rem;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 12px rgba(180, 50, 50, 0.1);
    }

    .checkout-form h2 {
      color: #a02020;
      margin-bottom: 1.5rem;
      text-align: center;
      font-size: 1.5rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      color: #5c1f1f;
      font-weight: 500;
      font-size: 0.95rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="month"] {
      width: 100%;
      padding: 0.6rem;
      margin-bottom: 1rem;
      border: 1px solid #d8b4b4;
      border-radius: 4px;
      background-color: #fff8f8;
      font-size: 1rem;
    }

    .card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-details .half {
  flex: 1 1 45%;
}

    input[type="submit"] {
      background-color: #b22222;
      color: white;
      border: none;
      padding: 0.75rem;
      width: 100%;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    input[type="submit"]:hover {
      background-color: #8b1a1a;
    }

    @media (min-width: 768px) {
      .checkout-form {
        padding: 2rem;
        max-width: 500px;
      }

      .checkout-form h2 {
        font-size: 1.75rem;
      }
    }
  

    /* Research details */

  .research-summary {
  position: relative;
  bottom: 10rem;
  right: 18rem;
  width: 25%;
}


/* Responsive fix for phones */
@media (max-width: 768px) {
  .research-summary {
    position: static;      
    width: 100%;           
    text-align: center;    
    margin-top: 1rem;      
  }
}


 main {
  max-width: 960px;
  margin: auto;
  padding: 1rem;
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.research-block {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.research-block h2 {
  margin-top: 0;
  color: #7a003c;
  font-size: 1.25rem;
}

.research-block ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.skin-research {
  margin: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skin-research ul {
  padding: 0;
  margin: 0.2rem 0;
}

.skin-research li {
  margin: 0.3rem 0;
}

.sources {
  font-size: 1rem;
  color: #555;
}


@media (min-width: 768px) {
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
  }
}

.summary-image img {
  width: 100%;       
  height: auto;        
  max-height: 280px;   
  object-fit: cover;   /* crops nicely if too tall */
  display: block;
  margin: 0 auto;    
  border-radius: 10px;
}

