@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

/* ============================================
   ILFORD inCOLOUR 2026 — blog.css
   Blog / recap page

   @import must stay on line 1 — any rule above it
   and the browser drops it silently.
   ============================================ */

/* ============================================
   BLOG HERO — light, colourful (About-page style)
   ============================================ */
.ic-bhero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
  max-height: 740px;
  padding: 78px 20px;
  color: var(--ic-navy);
  overflow: hidden;
  background: #fff url('/wp-content/uploads/2026/08/blog-InColour.jpg') center right / cover no-repeat;
}

/* White fade on the LEFT so text sits on clean white,
   collage stays bright on the right — no dark overlay. */
.ic-bhero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    #ffffff 0%,
    #ffffff 30%,
    rgba(255,255,255,.92) 42%,
    rgba(255,255,255,.55) 54%,
    rgba(255,255,255,.12) 66%,
    rgba(255,255,255,0) 78%
  );
}

/* ---------- Paint decor ---------- */
.ic-bhero .ic-splat { z-index: 2; }

.ic-bhero__splat-tl { --splat-w: 230px; --splat-h: 230px; --splat-r: -22deg; --splat-o: 1; top: -50px; left: -90px; }
.ic-bhero__splat-ml { --splat-w: 170px; --splat-h: 170px; --splat-r: 18deg;  --splat-o: .9; top: 50%; left: -95px; transform: translateY(-50%); }
.ic-bhero__splat-bl { --splat-w: 200px; --splat-h: 200px; --splat-r: 28deg;  --splat-o: 1; bottom: -55px; left: -80px; }

.ic-bhero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Eyebrow ---------- */
.ic-bhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ic-red);
  margin-bottom: 20px !important;
}
.ic-bhero__eyebrow::before {
  content: '';
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--ic-red);
}

/* ---------- Title ---------- */
.ic-bhero__title { margin-bottom: 26px !important; max-width: 680px; }

.ic-bhero__l1,
.ic-bhero__l2 { display: block; }

/* Script lead-in with teal underline swoosh, like "About Us" */
.ic-bhero__l1 {
  position: relative;
  width: fit-content;
  font-family: 'Kaushan Script', cursive !important;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: var(--ic-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
}
.ic-bhero__l1 em { font-style: normal; color: var(--ic-teal); }

.ic-bhero__l1::after {
  content: '';
  position: absolute;
  left: 2%;
  bottom: 0;
  width: 92%;
  height: 5px;
  border-radius: 5px;
  background: var(--ic-teal);
  transform: rotate(-.6deg);
}

/* Headline: navy base, rainbow accent word — like "Urban Art for Everyone." */
.ic-bhero__l2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.5px;
  text-transform: none;
  color: var(--ic-navy);
}

.ic-bhero__l2 b {
  font-weight: 800;
  background: linear-gradient(
    100deg,
    var(--ic-red) 0%,
    var(--ic-orange) 20%,
    var(--ic-yellow) 40%,
    var(--ic-green) 60%,
    var(--ic-teal) 78%,
    var(--ic-purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Intro ---------- */
.ic-bhero__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 540px;
  color: #444;
  margin-bottom: 0 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ic-bhero__splat-tl { --splat-w: 170px; --splat-h: 170px; left: -82px; }
  .ic-bhero__splat-ml { --splat-w: 130px; --splat-h: 130px; left: -85px; }
  .ic-bhero__splat-bl { --splat-w: 150px; --splat-h: 150px; left: -72px; }
}

@media (max-width: 860px) {
  .ic-bhero { min-height: auto; max-height: none; padding: 60px 20px 56px; background-position: 74% center; }
  .ic-bhero::before {
    background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,.94) 55%, rgba(255,255,255,.82) 100%);
  }
  .ic-bhero__title { max-width: 100%; }
  .ic-bhero__intro { max-width: 100%; }
  .ic-bhero__splat-ml { display: none; }
}

@media (max-width: 520px) {
  .ic-bhero__eyebrow { font-size: .72rem; letter-spacing: 2px; }
  .ic-bhero__eyebrow::before { width: 20px; }
  .ic-bhero__splat-tl { --splat-w: 125px; --splat-h: 125px; --splat-o: .4; }
  .ic-bhero__splat-bl { --splat-w: 115px; --splat-h: 115px; --splat-o: .4; }
}

/* ============================================
   BLOG BODY — shared wrapper
   First section carries the drip off the hero.
   ============================================ */
.ic-blog {
  position: relative;
  background: #fff;
  padding: 70px 20px;
  overflow: hidden;
}

.ic-blog--tint  { background: #faf8f4; }
.ic-blog--first { padding-top: 118px; }   /* clears the drip */

.ic-blog .ic-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;         /* readable measure for prose */
}
.ic-blog--wide .ic-wrap { max-width: 1240px; }

/* ---------- Prose ---------- */
.ic-blog__body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 18px !important;
}
.ic-blog__body p:last-child { margin-bottom: 0 !important; }

.ic-blog__body strong { color: var(--ic-navy); font-weight: 700; }

/* short accent line, e.g. "Ilford inColour hasn't." */
.ic-blog__lead {
  font-family: 'Kaushan Script', cursive !important;
  font-size: clamp(1.5rem, 3vw, 2.1rem) !important;
  line-height: 1.3 !important;
  color: var(--ic-purple) !important;
  margin: 6px 0 20px !important;
}

/* ---------- Figure: full-width image ---------- */
.ic-blogfig { margin: 0 0 34px !important; }
.ic-blogfig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ic-radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.ic-blogfig figcaption {
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.5;
  color: #777;
  font-style: italic;
  text-align: center;
}
/* hero figure — slightly taller crop feel on wide screens */
.ic-blogfig--hero img { box-shadow: 0 16px 40px rgba(0,0,0,.16); }

/* ---------- Splashes ----------
   Corner + MID-EDGE placements. Mid ones sit at the
   vertical centre of the section's left/right edges so
   decor runs alongside the content, not just at corners. */
.ic-blog__splat-tl { --splat-w: 230px; --splat-h: 230px; --splat-r: -20deg; --splat-o: .85; top: -60px; left: -90px; }
.ic-blog__splat-tr { --splat-w: 210px; --splat-h: 210px; --splat-r: 26deg;  --splat-o: .85; top: -50px; right: -85px; }
.ic-blog__splat-bl { --splat-w: 220px; --splat-h: 220px; --splat-r: 16deg;  --splat-o: .85; bottom: -60px; left: -85px; }
.ic-blog__splat-br { --splat-w: 200px; --splat-h: 200px; --splat-r: -24deg; --splat-o: .85; bottom: -50px; right: -80px; }

.ic-blog__splat-ml { --splat-w: 200px; --splat-h: 200px; --splat-r: 18deg;  --splat-o: .8; top: 50%; left: -95px;  transform: translateY(-50%); }
.ic-blog__splat-mr { --splat-w: 190px; --splat-h: 190px; --splat-r: -14deg; --splat-o: .8; top: 50%; right: -90px; transform: translateY(-50%); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ic-blog { padding: 54px 20px; }
  .ic-blog--first { padding-top: 100px; }
  .ic-blogfig { margin-bottom: 26px !important; }

  .ic-blog__splat-ml { --splat-w: 130px; --splat-h: 130px; --splat-o: .65; left: -70px; }
  .ic-blog__splat-mr { --splat-w: 120px; --splat-h: 120px; --splat-o: .65; right: -66px; }
  .ic-blog__splat-tl { --splat-w: 140px; --splat-h: 140px; --splat-o: .7; top: -40px; left: -60px; }
  .ic-blog__splat-tr { --splat-w: 130px; --splat-h: 130px; --splat-o: .7; top: -34px; right: -58px; }
  .ic-blog__splat-bl { --splat-w: 130px; --splat-h: 130px; --splat-o: .7; bottom: -40px; left: -58px; }
  .ic-blog__splat-br { --splat-w: 120px; --splat-h: 120px; --splat-o: .7; bottom: -34px; right: -55px; }
}

@media (max-width: 560px) {
  .ic-blog--first { padding-top: 84px; }
  .ic-blog__splat-ml,
  .ic-blog__splat-mr { display: none; }   /* too tight beside stacked content */
}

/* ---------- Section heading ---------- */
.ic-blog__h2 {
  text-transform: none;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem) !important;
  line-height: 1.2;
  color: var(--ic-navy) !important;
  margin-bottom: 24px !important;
}
/* colour-accent words: wrap in <em>/<b>/<i> */
.ic-blog__h2 em { font-style: normal; color: var(--ic-purple); }
.ic-blog__h2 b  { font-weight: inherit; color: var(--ic-teal); }
.ic-blog__h2 i  { font-style: normal; color: var(--ic-orange); }

/* ---------- Section eyebrow (small label above heading) ---------- */
.ic-blog__eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ic-red);
  margin-bottom: 12px !important;
}

/* ---------- Split: half-width image beside text ---------- */
.ic-blogsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.ic-blogsplit--flip .ic-blogsplit__media { order: 2; }

.ic-blogsplit__media { margin: 0; }
.ic-blogsplit__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ic-radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
}

@media (max-width: 900px) {
  .ic-blogsplit { grid-template-columns: 1fr; gap: 26px; }
  .ic-blogsplit--flip .ic-blogsplit__media { order: -1; }
}

/* ---------- Grid: image collage ---------- */
.ic-bloggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ic-bloggrid--2 { grid-template-columns: repeat(2, 1fr); }
.ic-bloggrid--4 { grid-template-columns: repeat(4, 1fr); }

.ic-bloggrid figure { margin: 0; }
.ic-bloggrid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  display: block;
  border-radius: var(--ic-radius);
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  transition: transform .3s ease;
}
.ic-bloggrid figure:hover img { transform: translateY(-5px); }

.ic-bloggrid figcaption {
  margin-top: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ic-navy);
  text-align: center;
}

@media (max-width: 860px) {
  .ic-bloggrid,
  .ic-bloggrid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ic-bloggrid,
  .ic-bloggrid--2,
  .ic-bloggrid--4 { grid-template-columns: 1fr; }
}

/* ---------- Pull-quote ---------- */
.ic-blogquote {
  position: relative;
  max-width: 820px;
  margin: 0 auto !important;
  padding: 34px 34px 34px 54px;
  background: #fff;
  border-radius: var(--ic-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
/* on tint sections give it cream instead so it stands out */
.ic-blog--tint .ic-blogquote { background: var(--ic-cream); box-shadow: none; }

.ic-blogquote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--ic-red) 0 25%,
    var(--ic-orange) 25% 50%,
    var(--ic-green) 50% 75%,
    var(--ic-teal) 75% 100%
  );
}
.ic-blogquote p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ic-navy);
  margin: 0 0 12px !important;
}
.ic-blogquote cite {
  font-style: normal;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ic-purple);
}
.ic-blogquote cite span {
  display: block;
  font-weight: 400;
  color: #777;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .ic-blogquote { padding: 26px 22px 26px 38px; }
  .ic-blogquote p { font-size: 1.08rem; }
}

/* ---------- Stat callout ---------- */
.ic-blogstat {
  text-align: center;
  padding: 8px 0;
}
.ic-blogstat strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 5.4rem);
  line-height: 1;
  color: var(--ic-red);
}
.ic-blogstat span {
  display: block;
  font-size: 1.05rem;
  color: var(--ic-navy);
  margin-top: 8px;
}

/* ---------- Civic profile: name heading in a split ---------- */
.ic-blogprofile__name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ic-navy);
  margin: 0 0 12px !important;
}
.ic-blogprofile__name span {
  display: block;
  font-family: inherit;
  font-weight: 400;
  font-size: .85rem;
  color: var(--ic-purple);
  margin-top: 3px;
}

/* ---------- Inline quote variant (inside a profile column) ---------- */
.ic-blogquote--inline {
  max-width: 100% !important;
  margin: 16px 0 !important;
  padding: 18px 20px 18px 32px;
}
.ic-blogquote--inline p { font-size: 1.05rem; margin: 0 !important; }

/* keep portrait aligned to top of a tall quote column */
.ic-blogprofile { align-items: start; }
.ic-blogprofile .ic-blogsplit__media img {
  position: sticky;
  top: 20px;
}

/* ---------- Impact bullet list ---------- */
.ic-bloglist {
  list-style: none;
  margin: 4px 0 0 !important;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ic-bloglist li {
  position: relative;
  padding-left: 30px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #3a3a3a;
}
.ic-bloglist li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ic-teal);
}
.ic-bloglist li:nth-child(5n+1)::before { background: var(--ic-red); }
.ic-bloglist li:nth-child(5n+2)::before { background: var(--ic-orange); }
.ic-bloglist li:nth-child(5n+3)::before { background: var(--ic-green); }
.ic-bloglist li:nth-child(5n+4)::before { background: var(--ic-purple); }

@media (max-width: 900px) {
  .ic-blogprofile .ic-blogsplit__media img { position: static; }
}

/* ---------- CTA block ---------- */
.ic-blogcta { text-align: center; }
.ic-blogcta .ic-blog__h2 { margin-bottom: 14px !important; }
.ic-blogcta > p { max-width: 620px; margin: 0 auto !important; }

@media (max-width: 560px) {
  .ic-blogcta .ic-btn { width: 100%; }
}

/* ---------- Partner logo row ---------- */
.ic-bloglogos {
  list-style: none;
  margin: 40px 0 0 !important;
  padding: 34px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 60px;
  background: #fff;
  border-radius: var(--ic-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.ic-bloglogos li { margin: 0; }
.ic-bloglogos img {
  display: block;
  height: 70px;          /* uniform logo height, natural width */
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

@media (max-width: 560px) {
  .ic-bloglogos { gap: 28px 40px; padding: 26px 20px; }
  .ic-bloglogos img { height: 54px; }
}

/* ---------- Closing finale lines ---------- */
.ic-blogfinale {
  text-align: center;
  margin: 30px auto 24px !important;
  line-height: 1.5;
}
.ic-blogfinale span {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--ic-navy);
}
/* cycle the four lines through the palette */
.ic-blogfinale span:nth-child(1) { color: var(--ic-red); }
.ic-blogfinale span:nth-child(2) { color: var(--ic-orange); }
.ic-blogfinale span:nth-child(3) { color: var(--ic-green); }
.ic-blogfinale span:nth-child(4) { color: var(--ic-teal); }