* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #f7f5f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
.back-button {

  display: inline-block;

  margin-bottom: 30px;

  padding: 10px 16px;

  border: 1px solid #111;

  color: #111;

  font-weight: 700;

  font-size: 14px;

  text-decoration: none;

  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;

}

.back-button:hover {

  background: #111;

  color: #fff;

  transform: translateY(-2px);

}
/* =========================
   NAV (NO IMAGE HERE)
========================= */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8%;
  background: #0d0d0d;
  color: #fff;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  font-size: 14px;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn-small,
.btn-secondary {
  display: inline-block;
  border-radius: 0;
  padding: 14px 22px;
  font-weight: 600;
}

.btn {
  background: #111;
  color: #fff;
}

.btn-small {
  border: 1px solid #fff;
  padding: 9px 14px;
}

.btn-secondary {
  border: 1px solid #111;
  color: #111;
}

/* =========================
   HERO (IMAGE HERE ONLY)
========================= */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 8%;
  color: #fff;

  background-image: url("images/header-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 0;
}

/* Content above overlay */
.hero * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  margin: 10px 0 24px;
  letter-spacing: -2px;
}

.subtitle {
  max-width: 680px;
  font-size: 20px;
  color: #d6d6d6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: #bfa87a;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
}

/* Hero buttons */
.hero .btn {
  background: #f7f5f0;
  color: #111;
}

.hero .btn-secondary {
  border-color: #f7f5f0;
  color: #f7f5f0;
}

/* =========================
   PAGE HEADER (ARTICLES PAGE)
========================= */

.page-header {
  position: relative;
  padding: 90px 8% 50px;
  color: #fff;

  background-image: url("images/header-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.65)
  );
  z-index: 0;
}

.page-header * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin: 10px 0;
}

.page-header p {
  max-width: 720px;
  color: #ddd;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 90px 8%;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card,
.article-card,
.cta-box,
.booking-box {
  background: #fff;
  padding: 30px;
  border: 1px solid #e4dfd3;
}

.card h3 {
  margin-top: 0;
}

.dark {
  background: #181818;
  color: #fff;
}

.dark p {
  max-width: 800px;
  color: #ddd;
}

.list {
  font-size: 20px;
  max-width: 800px;
}

/* =========================
   ARTICLES
========================= */

.article-list {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.article-card h2 {
  margin: 5px 0 10px;
}

.article-card h2 a:hover {
  text-decoration: underline;
}

.date {
  color: #bfa87a;
  font-weight: 700;
}

/* =========================
   ARTICLE PAGE
========================= */

.article-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 90px 24px;
  background: #f7f5f0;
}

.article-page h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
}

.article-page p {
  font-size: 19px;
}

.article-page h2 {
  margin-top: 45px;
}

/* =========================
   CTA BOX
========================= */

.cta-box {
  margin-top: 55px;
}
/* =========================

   UPWORK SECTION

========================= */

.upwork-section {

  background: #f7f5f0;

}

.upwork-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

}

.upwork-card {

  background: #fff;

  border: 1px solid #e4dfd3;

  padding: 40px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

}

.upwork-card h3 {

  margin-top: 0;

  font-size: 24px;

}

.upwork-card p {

  color: #555;

  margin-bottom: 25px;

}
/* =========================
   BOOKING
========================= */

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-form {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 35px;
  border: 1px solid #e4dfd3;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
/* =========================

   ABOUT SECTION (WITH IMAGE)

========================= */

.dark {

  position: relative;

  background-image: url("images/header-bg1.jpg");

  background-size: cover;

  background-position: center center;

  background-repeat: no-repeat;

  color: #fff;

}

/* Overlay for readability */

.dark::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(

    to bottom,

    rgba(0, 0, 0, 0.85),

    rgba(0, 0, 0, 0.7)

  );

  z-index: 0;

}

/* Keep content above overlay */

.dark * {

  position: relative;

  z-index: 1;

}

.dark p {

  max-width: 800px;

  color: #ddd;

}
input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.calendar-placeholder {
  height: 500px;
  border: 1px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  color: #555;
}
/* =========================

   ARTICLE IMAGE

========================= */

.article-image {

  width: 100%;

  margin-bottom: 40px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.article-image img {

  width: 100%;

  height: 420px;

  object-fit: cover;

  display: block;

}
/* =========================

   ARTICLE CARDS WITH IMAGES

========================= */

.article-card {

  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 28px;

  align-items: stretch;

}

.article-card-image {

  width: 100%;

  height: 100%;

  min-height: 220px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.article-card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: brightness(0.9);

  transition: transform 0.4s ease;

}

.article-card:hover .article-card-image img {

  transform: scale(1.05);

}

.article-card-content {

  display: flex;

  flex-direction: column;

  justify-content: center;

}

.read-more {

  margin-top: 18px;

  display: inline-block;

  width: fit-content;

  border: 1px solid #111;

  padding: 10px 16px;

  font-weight: 700;

  font-size: 14px;

}

.read-more:hover {

  background: #111;

  color: #fff;

}
/* =========================

   FOCUS SECTION

========================= */

.focus-section {

  background: #f7f5f0;

}

.section-intro {

  max-width: 760px;

  font-size: 20px;

  color: #555;

  margin-bottom: 45px;

}

.focus-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

}

.focus-item {

  background: #fff;

  border: 1px solid #e4dfd3;

  padding: 34px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.focus-item:hover {

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

}

.focus-item span {

  display: block;

  color: #bfa87a;

  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 18px;

}

.focus-item h3 {

  margin: 0 0 14px;

  font-size: 24px;

}

.focus-item p {

  margin: 0;

  color: #555;

}
/* =========================
   FOOTER
========================= */

footer {
  padding: 40px 8%;
  background: #0d0d0d;
  color: #aaa;
  font-size: 14px;
}

footer a {
  color: #fff;
}
/* =========================

   CARD IMAGES

========================= */

.card-image {

  width: 100%;

  height: 180px;

  margin-bottom: 20px;

  overflow: hidden;

  border: 1px solid #e4dfd3;

}

.card-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.4s ease;

}

/* subtle hover effect */

.card:hover .card-image img {

  transform: scale(1.05);

} 
/* =========================

   RESPONSIVE

========================= */

@media (max-width: 900px) {

  .nav {

    flex-direction: column;

    gap: 18px;

  }

  .nav nav {

    flex-wrap: wrap;

    justify-content: center;

  }

  .grid,

  .booking-grid,

  .upwork-grid,

  .focus-grid {

    grid-template-columns: 1fr;

  }

  .hero-actions {

    flex-direction: column;

    align-items: flex-start;

  }

  .article-card {

    grid-template-columns: 1fr;

    padding: 22px;

  }

  .article-card-image {

    height: 220px;

    min-height: 220px;

  }

  .article-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

  }

}
@media (max-width: 500px) {

  .section {

    padding: 60px 6%;

  }

  .article-card-image {

    height: 190px;

    min-height: 190px;

  }

  .article-card h2 {

    font-size: 22px;

  }

}

/* =========================

   ELEGANT ANIMATIONS

========================= */

.hero h1,

.hero .eyebrow,

.hero .subtitle,

.hero-actions,

.section h2,

.section-intro,

.card,

.focus-item,

.upwork-card {

  opacity: 0;

  transform: translateY(24px);

  transition: opacity 0.8s ease, transform 0.8s ease;

}

.hero h1 {

  transition-delay: 0.15s;

}

.hero .subtitle {

  transition-delay: 0.3s;

}

.hero-actions {

  transition-delay: 0.45s;

}

.is-visible {

  opacity: 1 !important;

  transform: translateY(0) !important;

}

.card,

.focus-item,

.upwork-card {

  transition: 

    opacity 0.8s ease,

    transform 0.8s ease,

    box-shadow 0.3s ease;

}

.card:hover,

.focus-item:hover,

.upwork-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

}

.card-image img {

  transition: transform 0.6s ease;

}

.card:hover .card-image img {

  transform: scale(1.06);

}

.btn,

.btn-secondary,

.btn-small {

  transition: 

    transform 0.25s ease,

    box-shadow 0.25s ease,

    background 0.25s ease,

    color 0.25s ease;

}

.btn:hover,

.btn-secondary:hover,

.btn-small:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

}

.nav {

  animation: navFade 0.7s ease forwards;

}

@keyframes navFade {

  from {

    opacity: 0;

    transform: translateY(-14px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

@media (prefers-reduced-motion: reduce) {

  * {

    animation: none !important;

    transition: none !important;

  }

  .hero h1,

  .hero .eyebrow,

  .hero .subtitle,

  .hero-actions,

  .section h2,

  .section-intro,

  .card,

  .focus-item,

  .upwork-card {

    opacity: 1 !important;

    transform: none !important;

  }

}

.publications-hero {
  padding: 110px 24px 70px;
  background:
    radial-gradient(circle at top right, rgba(180, 150, 95, 0.16), transparent 35%),
    linear-gradient(180deg, #111 0%, #181818 100%);
  color: #fff;
}

.publications-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.publications-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  margin: 10px 0 20px;
  letter-spacing: -0.04em;
}

.publications-hero p {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #b89b5e;
  font-weight: 700;
}

.publication-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.publication-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.publication-stats strong {
  color: #fff;
}

.publication-tools {
  max-width: 1120px;
  margin: 40px auto 24px;
  padding: 0 24px;
}

.publication-tools input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.publication-tools input:focus {
  border-color: #b89b5e;
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.12);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-tags button {
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tags button:hover,
.filter-tags button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.featured-publication {
  max-width: 1120px;
  margin: 40px auto 54px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 28px;
}

.featured-content {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  width: fit-content;
  background: #b89b5e;
  color: #111;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 16px 0 12px;
  letter-spacing: -0.035em;
}

.featured-content .date {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 20px;
}

.featured-content .subtitle {
  color: #d8c28a;
  font-style: italic;
}

.article-list {
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 155, 94, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.article-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.04);
}

.article-card-content {
  padding: 22px;
}

.article-card-content .date {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.article-card-content h2 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #111;
}

.article-card-content .subtitle {
  color: #8a6f35;
  font-style: italic;
  margin-bottom: 14px;
}

.article-card-content p {
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  margin-top: 14px;
  color: #111;
  font-weight: 700;
  border-bottom: 1px solid #b89b5e;
}

@media (max-width: 900px) {
  .featured-publication {
    grid-template-columns: 1fr;
  }

  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .publications-hero {
    padding: 90px 20px 52px;
  }

  .article-list {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 28px;
  }

  .featured-image img {
    min-height: 260px;
  }
}
/* Article cards with title over image */

.article-card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 155, 94, 0.45);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.article-card-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #111;
}

.article-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.36) 42%,
      rgba(0, 0, 0, 0.82) 100%
    );
  z-index: 1;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.06);
  opacity: 0.88;
}

.article-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  color: #fff;
}

.article-overlay-date {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.article-image-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-overlay-subtitle {
  margin: 10px 0 0;
  color: #d8c28a;
  font-size: 15px;
  line-height: 1.35;
  font-style: italic;
}

.article-card-content {
  padding: 22px 24px 24px;
}

.article-card-content p {
  margin: 0;
  color: #555;
  line-height: 1.65;
  font-size: 15px;
}

.article-card-content .read-more {
  display: inline-flex;
  margin-top: 18px;
  color: #111;
  font-weight: 700;
  border-bottom: 1px solid #b89b5e;
}

/* Improved CTA section */

.publications-cta {
  padding: 30px 24px 90px;
}

.publications-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(184, 155, 94, 0.24), transparent 34%),
    linear-gradient(135deg, #111 0%, #181818 55%, #24201a 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.publications-cta-copy h2 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #fff;
}

.publications-cta-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.publications-cta-panel {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.publications-cta-panel span {
  display: block;
  color: #d8c28a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.publications-cta-panel ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.publications-cta-panel li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.publications-cta-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89b5e;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: #b89b5e;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #d8c28a;
}

@media (max-width: 900px) {
  .publications-cta-inner {
    grid-template-columns: 1fr;
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .article-image-overlay {
    padding: 20px;
  }

  .article-image-overlay h2 {
    font-size: 23px;
  }

  .publications-cta {
    padding: 20px 18px 70px;
  }

  .publications-cta-inner {
    padding: 28px;
    border-radius: 26px;
  }

  .publications-cta-copy h2 {
    font-size: 34px;
  }
}

/* Strong article image overlay */

.article-card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 155, 94, 0.45);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.article-card-image {
  position: relative !important;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.article-card-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.06);
  opacity: 0.88;
}

.article-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.16) 34%,
      rgba(0, 0, 0, 0.58) 68%,
      rgba(0, 0, 0, 0.92) 100%
    );
}

.article-card-image::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 52%;
  z-index: 3;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.15) 0%,
    rgba(17, 17, 17, 0.76) 100%
  );
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-image-overlay {
  position: absolute !important;
  inset: 0;
  z-index: 4 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  pointer-events: none;
}

.article-overlay-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.article-overlay-date {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-overlay-bottom {
  position: relative;
  z-index: 5;
}

.article-image-overlay h2 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0;
  color: #fff !important;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.article-overlay-subtitle {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 11px 0 0;
  color: #d8c28a !important;
  font-size: 15px;
  line-height: 1.35;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.article-card-content {
  padding: 22px 24px 24px;
}

.article-card-content p {
  margin: 0;
  color: #555;
  line-height: 1.65;
  font-size: 15px;
}

.article-card-content .read-more {
  display: inline-flex;
  margin-top: 18px;
  color: #111;
  font-weight: 700;
  border-bottom: 1px solid #b89b5e;
}

@media (max-width: 640px) {
  .article-card-image {
    aspect-ratio: 16 / 13;
  }

  .article-image-overlay {
    padding: 18px;
  }

  .article-card-image::after {
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 58%;
  }

  .article-image-overlay h2 {
    font-size: 24px;
  }

  .article-overlay-subtitle {
    font-size: 14px;
  }
}
/* Redesigned publications archive */

.publications-archive {
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 10px 24px 0;
}

.publications-archive-header {
  margin: 30px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e2d6;
}

.publications-archive-header h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #111;
}

.publications-archive-header p:not(.eyebrow) {
  max-width: 720px;
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}

.article-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.article-row {
  background: #fff;
  border: 1px solid #ebe5da;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.article-row:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 155, 94, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
}

.article-row-link {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 250px;
  color: inherit;
  text-decoration: none;
}

.article-row-image {
  position: relative;
  overflow: hidden;
  background: #111;
}

.article-row-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.34)
  );
  z-index: 2;
}

.article-row-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.article-row:hover .article-row-image img {
  transform: scale(1.06);
  opacity: 0.92;
}

.article-row-content {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.article-row-meta span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f5f1e8;
  color: #7a6330;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-row-content h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.article-row-subtitle {
  margin: 0 0 16px;
  color: #8a6f35;
  font-size: 18px;
  line-height: 1.35;
  font-style: italic;
}

.article-row-excerpt {
  max-width: 690px;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.article-row-read {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: #111;
  font-weight: 800;
  border-bottom: 1px solid #b89b5e;
}

.no-articles-found {
  margin: 30px 0;
  padding: 24px;
  border-radius: 20px;
  background: #f8f5ef;
  color: #555;
  text-align: center;
}

/* Tablet */

@media (max-width: 900px) {
  .article-row-link {
    grid-template-columns: 260px 1fr;
  }

  .article-row-content {
    padding: 28px;
  }

  .article-row-content h2 {
    font-size: 30px;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .publications-archive {
    padding: 0 18px;
  }

  .article-row-link {
    grid-template-columns: 1fr;
  }

  .article-row-image img {
    min-height: 230px;
  }

  .article-row-content {
    padding: 26px;
  }

  .article-row-content h2 {
    font-size: 29px;
  }

  .article-row-subtitle {
    font-size: 16px;
  }

  .article-row-excerpt {
    font-size: 15px;
  }
}