/* ============================================================
   Andreia Teles — Clinical Psychologist & Coach
   Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --terracotta: #C4643A;
  --cream: #F7F2EC;
  --sage: #7A8C6E;
  --dark: #2C2C2C;
  --mid: #5A5A5A;
  --light-sage: #E8EDE5;
  --border: #D9D3CB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 6rem 0; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1.5rem; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin: 1.5rem 0 2.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover { background: #b0572f; opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: #fff; opacity: 1; }

.btn-light {
  background: #fff;
  color: var(--terracotta);
}
.btn-light:hover { background: var(--cream); opacity: 1; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: var(--cream);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .02em;
}
.nav-logo span { color: var(--terracotta); }

/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-right: .5rem;
}
.lang-sep { font-size: .7rem; color: var(--border); }
.lang-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  color: #aaa;
  padding: .3rem .4rem;
  border-radius: 2px;
  transition: color .2s;
}
.lang-btn.active { color: var(--terracotta); }
.lang-btn:hover { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: .875rem;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: .04em;
}
.nav-links a:hover { color: var(--terracotta); opacity: 1; }

.nav-links .btn { padding: .6rem 1.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all .3s;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3d2b1f 0%, #5c3d2e 40%, var(--terracotta) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: #fff; }

.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.5);
}

.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,.85); }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-credentials {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  gap: 2rem;
}

.credential-item { font-size: .8rem; color: rgba(255,255,255,.65); }
.credential-item strong { display: block; font-size: .9rem; color: rgba(255,255,255,.9); font-weight: 500; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  width: 420px;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-placeholder {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  padding: 2rem;
}
.hero-photo-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  opacity: .35;
}

/* ---------- About ---------- */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--light-sage);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  background: var(--terracotta);
  opacity: .12;
  border-radius: 50%;
  z-index: -1;
}

.about-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.badge {
  padding: .4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--mid);
  background: #fff;
}

.about-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(196,100,58,.05);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
}

/* ---------- Services ---------- */
.services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

/* Last card spans full row if odd number fills a partial row */
.services-grid .service-card:last-child:nth-child(3n+1) {
  grid-column: span 3;
}

.service-card {
  background: #fff;
  padding: 2.5rem;
  transition: background .2s;
}

.service-card:hover { background: var(--cream); }

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,100,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.service-card h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.service-card p { font-size: .9rem; }

/* ---------- Art Therapy ---------- */
.art-therapy { background: var(--light-sage); }

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.art-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-style: italic;
  text-align: center;
  padding: .5rem;
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) { background: #8fa082; }
.gallery-item:nth-child(2) { background: #c4a882; grid-row: span 2; }
.gallery-item:nth-child(3) { background: #b08060; }
.gallery-item:nth-child(4) { background: #d4b89a; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.art-content .divider { margin: 1.5rem 0 2rem; }

.art-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.art-list li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(122,140,110,.2);
  font-size: .95rem;
  color: var(--mid);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.art-list li::before {
  content: '◦';
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ---------- Locations ---------- */
.locations { background: var(--cream); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map {
  height: 180px;
  background: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: .85rem;
  font-style: italic;
}

.location-body { padding: 1.75rem; }
.location-body h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.location-type {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.location-body p { font-size: .9rem; margin-bottom: 1rem; }

/* ---------- Insights ---------- */
.insights { background: #fff; }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.article-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.article-thumb {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
}

.article-thumb-1 { background: linear-gradient(160deg, #c4a882 0%, #b08060 100%); }
.article-thumb-2 { background: linear-gradient(160deg, #8fa082 0%, #6b7d60 100%); }
.article-thumb-3 { background: linear-gradient(160deg, #c4643a88 0%, #c4643a 100%); }

.article-tag {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(255,255,255,.2);
  color: #fff;
  padding: .3rem .75rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.article-body { padding: 1.75rem; }
.article-body h3 { font-size: 1.25rem; margin-bottom: .75rem; line-height: 1.3; }
.article-body p { font-size: .875rem; margin-bottom: 1.25rem; }
.article-meta { font-size: .75rem; color: #999; }
.article-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: .5rem;
}

/* ---------- Contact ---------- */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,100,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta); }
.contact-item-value { font-size: .95rem; color: var(--dark); }

.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: .9rem;
  transition: all .2s;
}
.social-link:hover { border-color: var(--terracotta); color: var(--terracotta); opacity: 1; }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  border-radius: 4px;
  padding: 3rem;
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-gdpr {
  font-size: .8rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.form-gdpr input { width: auto; margin-top: .2rem; }

/* ---------- Footer ---------- */
.footer {
  background: #2a1f1a;
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--terracotta); }

.footer p { font-size: .875rem; margin-bottom: .5rem; }

.footer-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .875rem; }
.footer-links a:hover { color: #fff; opacity: 1; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: rgba(255,255,255,.45); }

.opp-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .85rem;
  border-radius: 100px;
  margin-top: 1rem;
}

/* ---------- Cookie Notice ---------- */
.cookie-notice {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: #2a1f1a;
  color: rgba(255,255,255,.85);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  z-index: 200;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  transition: opacity .4s, transform .4s;
}

.cookie-notice.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.cookie-text { font-size: .85rem; line-height: 1.6; }
.cookie-text a { color: var(--terracotta); }

.cookie-buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-accept, .cookie-decline {
  padding: .55rem 1.25rem;
  font-size: .8rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border: none;
  transition: all .2s;
}
.cookie-accept { background: var(--terracotta); color: #fff; }
.cookie-accept:hover { background: #b0572f; }
.cookie-decline { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.cookie-decline:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ---------- Article / Inner pages ---------- */
.article-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
}

.article-hero .section-label { margin-bottom: .75rem; }
.article-hero h1 { max-width: 760px; margin-bottom: 1.5rem; }
.article-hero-meta { font-size: .85rem; color: #999; }

.article-body-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.article-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.35rem; margin: 2rem 0 .75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.article-content li { margin-bottom: .5rem; font-size: 1rem; color: var(--mid); }
.article-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(196,100,58,.05);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
}

/* ---------- Utility pages ---------- */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 1rem; }

.page-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.page-content h2 { margin: 2rem 0 .75rem; font-size: 1.5rem; }
.page-content p { margin-bottom: 1rem; }
.page-content ul { margin: .75rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: .4rem; color: var(--mid); font-size: .95rem; }

/* ---------- Thank you page ---------- */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--cream);
}

.thankyou-card {
  max-width: 520px;
  text-align: center;
  padding: 4rem 3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.thankyou-icon {
  width: 72px; height: 72px;
  background: rgba(196,100,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.75rem;
}

.thankyou-card h1 { font-size: 2.2rem; margin-bottom: 1rem; }
.thankyou-card p { margin-bottom: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .art-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-c
/* ---------- Press Bar ---------- */
.press-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.press-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.press-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #bbb;
  flex-shrink: 0;
}

.press-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--mid);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  border: 1px solid var(--border);
  padding: .4rem 1rem;
  border-radius: 2px;
}

.press-item:hover { color: var(--terracotta); border-color: var(--terracotta); opacity: 1; }

.press-item svg { flex-shrink: 0; }

/* ---------- Press Quote (About section) ---------- */
.press-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(196,100,58,.04);
  border: 1px solid rgba(196,100,58,.15);
  border-radius: 3px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.press-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: .8;
  color: var(--terracotta);
  opacity: .3;
  flex-shrink: 0;
}

.press-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
}

.press-quote-source {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--terracotta);
  margin-top: .5rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.press-quote-source a { color: var(--terracotta); }
