/* ============================================================
   CATALUNYAAR — "The Simple Man" Series | Post #6
   Making Friends in Barcelona — /authority mode
   WP CODER: Paste into the CSS tab
   ============================================================ */

.cyr-p6-post * { box-sizing: border-box; margin: 0; padding: 0; }

.cyr-p6-post {
  font-family: 'Space Grotesk', sans-serif;
  color: #1a1a2e;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 0 60px;
  line-height: 1.7;
}

/* ── SERIES NAV ── */
.cyr-series-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f8;
  flex-wrap: wrap;
  gap: 10px;
}
.cyr-series-prev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.cyr-series-prev:hover { color: #e11d48; }
.cyr-series-prev .ti { font-size: 15px; }
.cyr-series-current {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
}

/* ── HERO — warm coral/rose connection theme ── */
.cyr-p6-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #881337 0%, #be123c 60%, #881337 100%);
  border-radius: 20px;
  padding: 52px 48px;
  margin-bottom: 36px;
  overflow: hidden;
  position: relative;
}
.cyr-p6-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cyr-p6-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fda4af;
  margin-bottom: 14px;
}
.cyr-p6-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.cyr-p6-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ── LANG TOGGLE ── */
.cyr-lang-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}
.cyr-lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.cyr-lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.cyr-lang-btn.active { background: #D4AF37; color: #881337; font-weight: 700; }

/* ── FRIENDSHIP VISUAL ── */
.cyr-friendship-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
}
.cyr-fv-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  justify-content: center;
  flex-shrink: 0;
}
.cyr-fv-circle .ti { font-size: 20px; color: #D4AF37; }
.cyr-fv-circle span { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.75); }
.cyr-fv-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cyr-fv-line {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.cyr-fv-others {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cyr-fv-node {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 6px 10px;
}
.cyr-fv-node .ti { font-size: 14px; color: #fda4af; }
.cyr-fv-node span { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75); }

/* ── OPENER ── */
.cyr-p6-opener {
  background: #fff1f2;
  border-left: 4px solid #e11d48;
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.cyr-p6-opener p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}
.cyr-p6-opener p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #e11d48;
  font-size: 18px;
}

/* ── SECTIONS ── */
.cyr-p6-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1.5px solid #f0f0f8;
}
.cyr-p6-section:last-of-type { border-bottom: none; }
.cyr-p6-sec-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.cyr-p6-sec-num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: #e8eaf0;
  min-width: 64px;
  letter-spacing: 0.02em;
}
.cyr-p6-sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cyr-p6-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e11d48;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 4px 12px;
}
.cyr-p6-sec-tag .ti { font-size: 14px; }
.cyr-p6-body p { font-size: 16px; color: #374151; line-height: 1.75; margin-bottom: 18px; }
.cyr-p6-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #10143C;
  margin: 28px 0 16px;
}

/* ── REALITY GRID ── */
.cyr-reality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.cyr-reality-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 16px;
  padding: 22px;
}
.cyr-reality-local { border-top: 4px solid #6b7280; }
.cyr-reality-expat { border-top: 4px solid #3b82f6; }
.cyr-reality-indian { border-top: 4px solid #D4AF37; }
.cyr-reality-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 10px;
}
.cyr-reality-local .cyr-reality-title .ti { color: #6b7280; }
.cyr-reality-expat .cyr-reality-title .ti { color: #3b82f6; }
.cyr-reality-indian .cyr-reality-title .ti { color: #D4AF37; }
.cyr-reality-card p { font-size: 13px; color: #4b5563; line-height: 1.65; margin-bottom: 12px; }
.cyr-reality-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.cyr-rt-amber { background: #fef3c7; color: #92400e; }
.cyr-rt-green { background: #dcfce7; color: #166534; }
.cyr-rt-gold { background: #fef9c3; color: #713f12; }

/* ── WHERE LIST ── */
.cyr-where-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
}
.cyr-where-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border-bottom: 1px solid #f0f0f8;
}
.cyr-where-item:last-child { border-bottom: none; }
.cyr-where-top { background: #fff8f0; border-left: 4px solid #D4AF37; }
.cyr-where-rank {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: #D4AF37;
  min-width: 32px;
  line-height: 1.2;
}
.cyr-where-top .cyr-where-rank { color: #D4AF37; }
.cyr-where-title {
  font-size: 15px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 6px;
}
.cyr-where-content p { font-size: 13px; color: #4b5563; line-height: 1.65; margin-bottom: 8px; }
.cyr-where-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #e11d48;
  background: #fff1f2;
  border-radius: 6px;
  padding: 4px 10px;
}

/* ── LANGUAGE TACTICS ── */
.cyr-language-tactics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid #fecdd3;
  border-radius: 16px;
  overflow: hidden;
  background: #fff1f2;
  margin: 20px 0;
}
.cyr-lt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border-bottom: 1px solid #fecdd3;
}
.cyr-lt-item:last-child { border-bottom: none; }
.cyr-lt-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #fff1f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cyr-lt-icon .ti { color: #e11d48; font-size: 20px; }
.cyr-lt-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 5px;
}
.cyr-lt-item p { font-size: 13px; color: #4b5563; line-height: 1.65; margin: 0; }

/* ── BALANCE CARDS ── */
.cyr-balance-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.cyr-balance-card {
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid #e8eaf0;
}
.cyr-bc-keep { background: #f0fdf4; border-color: #bbf7d0; }
.cyr-bc-reduce { background: #fff8f0; border-color: #fed7aa; }
.cyr-bc-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.cyr-bc-keep .cyr-bc-title { color: #166534; }
.cyr-bc-reduce .cyr-bc-title { color: #92400e; }
.cyr-bc-item {
  font-size: 13px;
  color: #374151;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.55;
}
.cyr-bc-item:last-child { border-bottom: none; }

/* ── WELLBEING SIGNS ── */
.cyr-wellbeing-signs {
  background: #fff1f2;
  border: 1.5px solid #fecdd3;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
}
.cyr-wb-title {
  font-size: 15px;
  font-weight: 700;
  color: #881337;
  margin-bottom: 16px;
}
.cyr-wb-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cyr-wb-sign {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.55;
}
.cyr-wb-sign .ti { color: #e11d48; font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ── CALLOUTS ── */
.cyr-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 20px 0;
}
.cyr-callout .ti { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cyr-callout strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cyr-callout p { font-size: 14px; line-height: 1.65; margin: 0; }
.cyr-callout-info { background: #eff6ff; border: 1.5px solid #bfdbfe; }
.cyr-callout-info .ti, .cyr-callout-info strong { color: #1d4ed8; }
.cyr-callout-info p { color: #1e3a8a; }
.cyr-callout-warmth { background: #fff1f2; border: 1.5px solid #fecdd3; }
.cyr-callout-warmth .ti, .cyr-callout-warmth strong { color: #e11d48; }
.cyr-callout-warmth p { color: #881337; }

/* ── COMMUNITY SECTION ── */
.cyr-p6-community {
  background: linear-gradient(135deg, #881337, #be123c);
  border-radius: 20px;
  padding: 4px;
  margin-bottom: 44px;
}
.cyr-p6-comm-inner {
  background: linear-gradient(135deg, #881337, #be123c);
  border-radius: 17px;
  padding: 44px;
  border: 1px solid rgba(253,164,175,0.25);
}
.cyr-p6-comm-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fda4af;
  margin-bottom: 10px;
}
.cyr-p6-comm-title {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.cyr-p6-comm-body {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 580px;
}
.cyr-p6-comm-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cyr-comm-stat { text-align: center; }
.cyr-comm-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: #D4AF37;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cyr-comm-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }
.cyr-p6-comm-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #D4AF37;
  text-decoration: none;
  border-bottom: 2px solid rgba(212,175,55,0.4);
  transition: border-color 0.2s;
}
.cyr-p6-comm-cta:hover { border-color: #D4AF37; }

/* ── NEXT POST ── */
.cyr-next-post {
  background: #f8f9ff;
  border: 1.5px solid #e8eaf0;
  border-left: 5px solid #D4AF37;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.cyr-next-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 8px;
}
.cyr-next-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #10143C;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cyr-next-post p { font-size: 14px; color: #6b7280; margin-bottom: 14px; line-height: 1.6; }
.cyr-next-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #e11d48;
  text-decoration: none;
  border-bottom: 2px solid #fecdd3;
  transition: border-color 0.2s;
}
.cyr-next-cta:hover { border-color: #e11d48; }

/* ── CTA BLOCK ── */
.cyr-cta-block {
  background: #fff1f2;
  border: 2px solid #fecdd3;
  border-radius: 20px;
  padding: 44px;
  text-align: center;
  margin-bottom: 44px;
}
.cyr-cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e11d48;
  margin-bottom: 10px;
}
.cyr-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.35;
}
.cyr-cta-body { font-size: 15px; color: #4b5563; max-width: 460px; margin: 0 auto 24px; line-height: 1.65; }
.cyr-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cyr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cyr-btn-primary:hover { background: #1db954; transform: translateY(-1px); color: #fff; }
.cyr-btn-secondary {
  display: inline-flex;
  background: #fff;
  color: #1a1a2e;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #e8eaf0;
  transition: border-color 0.2s, transform 0.15s;
}
.cyr-btn-secondary:hover { border-color: #1a1a2e; transform: translateY(-1px); color: #1a1a2e; }

/* ── SOCIAL FOOTER ── */
.cyr-social-footer {
  text-align: center;
  padding: 36px 0 0;
  border-top: 1.5px solid #f0f0f8;
}
.cyr-social-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 18px;
}
.cyr-social-icons { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.cyr-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, opacity 0.15s;
}
.cyr-social-icon:hover { transform: translateY(-2px); opacity: 0.9; }
.cyr-social-wa { background: #25D366; }
.cyr-social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cyr-social-yt { background: #FF0000; }
.cyr-social-fb { background: #1877F2; }
.cyr-social-tt { background: #000; }
.cyr-brand-tagline { font-size: 13px; color: #9ca3af; font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .cyr-p6-hero { grid-template-columns: 1fr; padding: 36px 24px 32px; }
  .cyr-p6-hero-icon { display: none; }
  .cyr-p6-title { font-size: 38px; }
  .cyr-p6-sec-num { font-size: 38px; min-width: 48px; }
  .cyr-p6-sec-title { font-size: 19px; }
  .cyr-reality-grid { grid-template-columns: 1fr; }
  .cyr-balance-cards { grid-template-columns: 1fr; }
  .cyr-p6-comm-inner { padding: 28px 24px; }
  .cyr-p6-comm-stats { gap: 20px; }
  .cyr-cta-block { padding: 28px 20px; }
  .cyr-p6-opener { padding: 20px; }
}