.writings-home, .writings-home p, .writings-home a {
  letter-spacing: 0.04em;
}
.writings-home {
  text-align: left;
}
/*----------------------------------------

  writings palette

----------------------------------------*/

.writings-home {
  --landing-card-bg: #fffafa;
  --landing-card-border: #e78394;
  --landing-card-border-soft: #f0b8c2;

  --landing-head-top: #f8d8de;
  --landing-head-bottom: #fff4f6;

  --landing-inner-bg: #fff7f8;
  --landing-inner-bg-soft: #f6d8dc;
  --landing-inner-border: #e8bcc2;

  --landing-text-soft: #7d676b;
  --landing-heading: #8d5b64;
  --landing-heading-accent: #c85f72;

  --landing-link: #b8445e;
  --landing-link-hover: #3f3838;

  text-align: left;
  letter-spacing: 0.04em;
}

/* blue gets a softer palette */
.theme-blue .writings-home {
  --landing-card-bg: #fbfefe;
  --landing-card-border: #1689b8;
  --landing-card-border-soft: #8fc8d8;

  --landing-head-top: #d8eef3;
  --landing-head-bottom: #f7fbfb;

  --landing-inner-bg: #f1f7f8;
  --landing-inner-bg-soft: #dceff3;
  --landing-inner-border: #a6cfd8;

  --landing-text-soft: #435e64;
  --landing-heading: #2d6d7e;
  --landing-heading-accent: #1896c0;

  --landing-link: #2284b5;
  --landing-link-hover: #142b35;
}

/* tan needs clearer contrast */
.theme-tan .writings-home {
  --landing-card-bg: #fffdf9;
  --landing-card-border: #815c62;
  --landing-card-border-soft: #c9ad9b;

  --landing-head-top: #eadcca;
  --landing-head-bottom: #faf4ec;

  --landing-inner-bg: #f8f0e8;
  --landing-inner-bg-soft: #ddc6ad;
  --landing-inner-border: #cbb49e;

  --landing-text-soft: #665957;
  --landing-heading: #70555a;
  --landing-heading-accent: #815c62;

  --landing-link: #936970;
  --landing-link-hover: #342f2d;
}
/*----------------------------------------

  cleanup style.css removals lol

----------------------------------------*/

.writings-home .hub-card-head h2, .writings-home .start-card h2, .writings-home .latest-card h3 {
  text-decoration: none;
}
.writings-home .hub-card-head a, .writings-home .start-card h2 a, .writings-home .latest-card h3 a {
  color: var(--landing-heading);
  text-decoration: none;
}
.writings-home .hub-card-head a:visited, .writings-home .start-card h2 a:visited, .writings-home .latest-card h3 a:visited {
  color: var(--landing-heading);
}
.writings-home .hub-card-head a:hover, .writings-home .start-card h2 a:hover, .writings-home .latest-card h3 a:hover {
  color: var(--landing-heading-accent);
}

/* remove global button styling */
.writings-home .card-links a, .writings-home .card-links a:visited {
  color: var(--landing-link);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 0.18em;
}
.writings-home .card-links a:hover {
  color: var(--landing-link-hover);
  text-decoration-style: dotted;
}

/* keep main hub link the only styled link */
.writings-home .card-cta {
  color: var(--landing-link);
  border-color: var(--landing-card-border-soft);
  background:
    linear-gradient(
      to bottom,
      var(--landing-inner-bg),
      var(--landing-inner-bg-soft)
    );
}
.writings-home .card-cta:hover {
  color: var(--landing-link-hover);
  border-color: var(--landing-card-border);
}
.writings-home .card-desc {
  color: var(--text-color);
  letter-spacing: 0.045em;
}
.writings-home .card-links span {
  color: var(--landing-heading-accent);
}
/*----------------------------------------

  icon hue color filters

----------------------------------------*/

.writings-home .hub-card-head img {
  filter: var(--hub-icon-filter, none);
  transition: filter 160ms ease, opacity 160ms ease;
}
/* default */

.writings-home .hub-resources {
  --hub-icon-filter: none;
}
.writings-home .hub-interviews {
  --hub-icon-filter: none;
}
.writings-home .hub-oldweb {
  --hub-icon-filter: none;
}
.writings-home .hub-essays {
  --hub-icon-filter: none;
}
.writings-home .hub-feelingb {
  --hub-icon-filter: none;
}
.theme-blue .writings-home .hub-resources, .theme-blue .writings-home .hub-essays {
  --hub-icon-filter:
    hue-rotate(210deg)
    saturate(1.1)
    brightness(0.9)
    contrast(1.3);
}
.theme-blue .writings-home .hub-oldweb {
  --hub-icon-filter:
    hue-rotate(225deg)
    saturate(1.1)
    brightness(0.9)
    contrast(1.3);
}
.theme-blue .writings-home .hub-interviews {
  --hub-icon-filter:
    hue-rotate(200deg)
    saturate(1.3)
    brightness(0.9)
    contrast(1.3);
}
.theme-tan .writings-home .hub-essays, .theme-tan .writings-home .hub-interviews, .theme-tan .writings-home .hub-oldweb {
  --hub-icon-filter:
    sepia(0.7)
    hue-rotate(-15deg)
    saturate(0.9)
    brightness(1.0)
    contrast(1.15);
}
.theme-tan .writings-home .hub-resources {
  --hub-icon-filter:
    sepia(0.7)
    hue-rotate(-35deg)
    saturate(1.9)
    brightness(0.9)
    contrast(1.20);
}