/* ==========================================================================
   /press — "Clickio in the News" press list (Company cluster)
   Loaded after site.css + inner.css. Rebuilds the live Tilda T-Feed
   (rec404909118): reverse-chronological press cards + red SHOW MORE pill +
   media-enquiries band. Only page-specific layout lives here.
   ========================================================================== */

/* --- feed section shell --- */
.press {
  padding: 88px 0 70px;
}
.press .wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- feed title (plain div on live; no h1/h2) --- */
.press-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.23;
  font-weight: 700;
  color: #283975;
  margin: 0 0 64px;
}

/* --- press card --- */
.press-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 34px 0;
  border-bottom: 1px solid #ececec;
}
.press-item:first-child { padding-top: 0; }

/* thumbnail: fixed ~230x150 box, logo centered on white */
.press-thumb {
  flex: 0 0 230px;
  width: 230px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.press-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* text block: left gutter reserves the thumbnail column */
.press-body {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 40px;
}
.press-headline {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
.press-headline a {
  color: #283975;
  text-decoration: none;
}
.press-headline a:hover { text-decoration: underline; }
.press-desc {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.9);
}
.press-date {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.04em;
}

/* hidden items revealed by SHOW MORE */
.press-item--more { display: none; }
.press-list.is-expanded .press-item--more { display: flex; }

/* --- SHOW MORE pill --- */
.press-more-wrap {
  text-align: center;
  margin-top: 60px;
}
.press-more {
  display: inline-block;
  background: #DD4242;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border: 0;
  border-radius: 80px;
  padding: 13px 60px;
  cursor: pointer;
  font-family: inherit;
}
.press-more:hover { background: #C93A3A; }
.press-more.is-hidden { display: none; }

/* --- media enquiries band --- */
.press-enquiries {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.press-enquiries p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #283975;
}
.press-enquiries a {
  color: #283975;
  text-decoration: underline;
}

/* --- mobile: stack thumbnail on top --- */
@media (max-width: 640px) {
  .press { padding: 40px 0 50px; }
  .press-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .press-item {
    flex-direction: column;
    padding: 30px 0;
  }
  .press-thumb {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: 350px;
    margin-bottom: 24px;
  }
  .press-thumb img { max-height: 350px; }
  .press-body { padding-left: 0; }
  .press-more-wrap { margin-top: 40px; }
}
