/* Hide sharing buttons */
.sharedaddy.sd-sharing-enabled {
  display: none;
}

/* Hide author name in post meta (keep date/time) */
.single-post .elementor-post-info li:first-child,
.single-post .elementor-post-info__list li:first-child,
.single-post .elementor-icon-list-items li:first-child,
.single-post ul li:first-child > a[rel="author"],
.single-post a[rel="author"] {
  display: none !important;
}

/* ============================================
   BLOG POST PADDING — scoped to single posts only
   ============================================ */
.single-post .e-con-full {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media (max-width: 600px) {
  .single-post .e-con-full {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ============================================
   CROSS KEYS EVENTS — Blog Post Styles
   ============================================ */

:root {
  --navy: #0D2137;
  --deep-blue: #1B4F72;
  --accent: #C9944A;
  --accent-light: #E8C98E;
  --warm-white: #FAF8F5;
  --off-white: #F2EDE7;
  --text: #2C3E50;
  --text-light: #5D6D7E;
  --coral: #C0392B;
  --success: #1E8449;
}

/* ============================================
   CALLOUT BOX
   ============================================ */
.callout {
  background: #F2EDE7;
  border-left: 4px solid #C9944A;
  padding: 28px 32px;
  margin: 36px 0;
  border-radius: 0 8px 8px 0;
}
.callout p { margin-bottom: 8px; }
.callout p:last-child { margin-bottom: 0; }
.callout .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9944A;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.stat-card {
  background: white;
  border: 1px solid #E5E0DA;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,33,55,0.08);
}
.stat-card .number {
  font-size: 36px;
  font-weight: 800;
  color: #1B4F72;
  line-height: 1;
}
.stat-card .label {
  font-size: 14px;
  color: #5D6D7E;
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================
   BUDGET TABLE
   ============================================ */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 36px;
  font-size: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,33,55,0.06);
}
.budget-table thead th {
  background: #0D2137;
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.budget-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid #E5E0DA;
}
.budget-table tbody tr:nth-child(even) { background: #F2EDE7; }
.budget-table tbody tr:hover { background: #EBE4DB; }
.budget-table .highlight { color: #1B4F72; font-weight: 700; }

/* ============================================
   4-QUARTER FRAMEWORK BOX
   ============================================ */
.framework {
  background: linear-gradient(135deg, #0D2137 0%, #1B4F72 100%);
  color: white;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}
.framework h3 {
  color: #E8C98E;
  font-size: 24px;
  margin: 0 0 8px;
}
.framework .subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 24px;
}
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .framework-grid { grid-template-columns: 1fr; }
}
.framework-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.framework-item .pct {
  font-size: 42px;
  font-weight: 800;
  color: #E8C98E;
  line-height: 1;
}
.framework-item .cat {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
}
.framework-item .detail {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ============================================
   NUMBERED TIP LIST
   ============================================ */
.tip-list {
  counter-reset: tips;
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
}
.tip-list li {
  counter-increment: tips;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.tip-list li::before {
  content: counter(tips);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #1B4F72;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: #F2EDE7;
  border: 2px solid #C9944A;
  border-radius: 12px;
  padding: 44px 40px;
  margin: 48px 0;
  text-align: center;
}
.cta-section h3 {
  font-size: 26px;
  color: #0D2137;
  margin: 0 0 12px;
}
.cta-section p {
  color: #5D6D7E;
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 16px;
}
.cta-btn {
  display: inline-block;
  background: #C9944A;
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: #B8862F; transform: translateY(-1px); }
.cta-sub {
  font-size: 13px;
  color: #5D6D7E;
  margin-top: 12px;
}

/* ============================================
   BOTTOM LINE BOX
   ============================================ */
.bottom-line {
  background: #0D2137;
  color: white;
  border-radius: 12px;
  padding: 36px 40px;
  margin: 40px 0;
}
.bottom-line h3 {
  color: #E8C98E;
  margin: 0 0 14px;
}
.bottom-line p { color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.bottom-line p:last-child { margin-bottom: 0; }

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid #E5E0DA;
  margin-top: 48px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  background: #1B4F72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8C98E;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; color: #0D2137; }
.author-info .bio { font-size: 14px; color: #5D6D7E; }

/* ============================================
   TAGS
   ============================================ */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  background: white;
  border: 1px solid #E5E0DA;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #5D6D7E;
  font-weight: 500;
}

/* ============================================
   TECH CATEGORY CARDS (Blog 2+)
   ============================================ */
.tech-card {
  border: 1px solid #E5E0DA;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
  box-shadow: 0 2px 12px rgba(13,33,55,0.06);
}
.tech-header {
  background: #F2EDE7;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #E5E0DA;
}
.tech-icon {
  font-size: 17px;
  color: #0D2137;
  font-weight: 700;
}
.tech-verdict {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.tech-verdict.essential {
  background: #1E8449;
  color: white;
}
.tech-verdict.conditional {
  background: #C9944A;
  color: white;
}
.tech-verdict.skip {
  background: #C0392B;
  color: white;
}
.tech-body {
  padding: 24px;
  font-size: 16px;
  line-height: 1.75;
}
.tech-body p { margin-bottom: 14px; }

/* LOOK FOR / AVOID ROWS */
.tech-detail {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .tech-detail { grid-template-columns: 1fr; }
}
.tech-detail-item {
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
}
.tech-detail-item.look-for {
  background: #EAF4EE;
  border-left: 3px solid #1E8449;
}
.tech-detail-item.avoid {
  background: #FDEDEC;
  border-left: 3px solid #C0392B;
}

/* ============================================
   OVERHYPED / SKIP SECTION
   ============================================ */
.overhyped {
  background: #FDEDEC;
  border-left: 4px solid #C0392B;
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.overhyped .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C0392B;
  font-weight: 700;
  margin-bottom: 16px;
}
.overhyped strong { color: #0D2137; }

/* ============================================
   BUDGET ALLOCATION BOX
   ============================================ */
.budget-box {
  background: linear-gradient(135deg, #0D2137 0%, #1B4F72 100%);
  color: white;
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}
.budget-box h3 {
  color: #E8C98E;
  font-size: 22px;
  margin: 0 0 12px;
}
.budget-box p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-size: 15px;
}
.budget-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.budget-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 20px;
}
.budget-item .pct {
  font-size: 16px;
  font-weight: 600;
  color: #E8C98E;
}

/* Blog - Checklist Post */
.phase-block{background:white;border:1px solid #E5E0DA;border-radius:12px;margin:32px 0;overflow:hidden;box-shadow:0 2px 12px rgba(13,33,55,0.04)}
.phase-head{padding:20px 24px;display:flex;align-items:center;gap:14px;border-bottom:1px solid #E5E0DA}
.phase-badge{background:#0D2137;color:#E8C98E;font-size:13px;font-weight:700;padding:6px 14px;border-radius:6px;white-space:nowrap}
.phase-name{font-size:20px;font-weight:700;color:#0D2137}
.check-group{padding:8px 24px 20px}
.check-group h4{font-size:14px;font-weight:700;color:#1B4F72;text-transform:uppercase;letter-spacing:1px;margin:16px 0 8px;padding-top:12px;border-top:1px solid #F0EDE8}
.check-group h4:first-child{border-top:none;padding-top:4px}
.check-item{display:flex;align-items:flex-start;gap:10px;padding:6px 0;font-size:15px;line-height:1.5}
.check-item::before{content:'\2610';font-size:18px;color:#1B4F72;flex-shrink:0;margin-top:1px}
.pull-quote{border-left:4px solid #C9944A;padding:24px 32px;margin:36px 0;background:rgba(201,148,74,0.04);border-radius:0 8px 8px 0}
.pull-quote p{font-size:22px;color:#0D2137;font-weight:600;line-height:1.5;margin-bottom:0}
.cta-section{background:linear-gradient(135deg,#F2EDE7 0%,#EDE8E1 100%);border:2px solid #C9944A;border-radius:12px;padding:44px 40px;margin:48px 0;text-align:center}
.cta-section .badge{display:inline-block;background:#C9944A;color:white;font-size:11px;letter-spacing:2px;text-transform:uppercase;font-weight:700;padding:4px 14px;border-radius:3px;margin-bottom:16px}
.cta-section h3{font-size:26px;color:#0D2137;margin:0 0 12px}
.cta-section p{color:#5D6D7E;max-width:520px;margin:0 auto 24px;font-size:16px}
.cta-btn{display:inline-block;background:#C9944A;color:white;padding:16px 40px;border-radius:6px;text-decoration:none;font-weight:700;font-size:16px}
.cta-btn:hover{background:#A67C3A}
.cta-sub{font-size:13px;color:#5D6D7E;margin-top:12px}
.bottom-line{background:#0D2137;color:white;border-radius:12px;padding:36px 40px;margin:40px 0}
.bottom-line h3{color:#E8C98E;margin:0 0 14px}
.bottom-line p{color:rgba(255,255,255,0.8);margin-bottom:12px}