/* ==========================================================================
   1. Variables & Global Resets
   ========================================================================== */
:root {
  --orange: #f2762a;
  --dark-navy: #1d212a;
  --dark-gray: #121217;
  --text-body: #4a4a5a;
  --light-bg: #f8f9fa;
  --border-color: #e5e5e9;
  --font-main: 'Plus Jakarta Sans', sans-serif;
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body { 
  font-family: var(--font-main); 
  color: var(--text-body); 
  line-height: 1.6; 
  background: #fff; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }

/* Sub-tags */
.sub-tag {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

/* ==========================================================================
   2. Header & Navigation (Taller Top Bar & Scaled Social Icons)
   ========================================================================== */
.top-bar { 
  background: var(--orange); 
  color: #fff; 
  padding: 8px 0; /* Increased padding by ~30% for a taller bar */
  font-size: 13px; 
}

.top-bar-flex { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.top-email { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
}

.top-socials { 
  display: flex; 
  gap: 16px; 
  align-items: center;
}

.top-socials a { 
  color: #ffffff; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Scaled Sizing and Bolder Stroke for Top Bar Social Icons */
.top-socials i,
.top-socials svg { 
  width: 22px !important; /* Scaled up from 18px */
  height: 22px !important; 
  stroke: #ffffff !important;
  stroke-width: 2.2 !important;
  display: block;
}

.site-header { 
  background: #fff; 
  border-bottom: 1px solid var(--border-color); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
}

.header-flex { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  height: 80px; 
}

/* Logo Constraints */
.logo {
  display: flex;
  align-items: center;
}

.logo img,
.site-logo-img {
  max-height: 40px !important;
  width: auto !important;
  display: block;
}

.main-nav ul { 
  display: flex; 
  list-style: none; 
  gap: 24px; 
  align-items: center; 
}

.main-nav a { 
  text-decoration: none; 
  color: var(--dark-gray); 
  font-weight: 600; 
  font-size: 15px; 
  transition: color 0.2s; 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.main-nav a:hover, 
.main-nav a.active { 
  color: var(--orange); 
}

.mobile-toggle { 
  display: none; 
  background: none; 
  border: none; 
  cursor: pointer; 
  color: var(--dark-gray); 
}

.mobile-toggle i { 
  width: 28px; 
  height: 28px; 
}

/* ==========================================================================
   3. Buttons & CTAs
   ========================================================================== */
.btn { 
  display: inline-block; 
  padding: 14px 30px; 
  font-weight: 700; 
  text-decoration: none; 
  border-radius: 4px; 
  border: none; 
  cursor: pointer; 
}

.btn-orange { 
  background: var(--orange); 
  color: #fff; 
}

.btn-orange:hover { background: #d86118; }
.btn-block { width: 100%; text-align: center; }

/* ==========================================================================
   4. Smooth Continuous Text Marquee (Slower Pace)
   ========================================================================== */
.client-logos-carousel {
  padding: 70px 0;
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.carousel-intro {
  max-width: 800px;
  margin: 0 auto 35px auto;
}

.carousel-intro h2 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.carousel-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.client-text-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  margin-top: 25px;
  width: 100%;
}

.marquee-track-wrap {
  display: flex;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

/* Alternating Color Styles */
.client-name-item {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: var(--dark-navy);
  border: 1px solid var(--dark-navy);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.client-name-item:nth-child(2n+0) {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

.client-name-item:hover {
  transform: translateY(-2px);
}

/* Smooth Continuous Scroll Animations (75s per loop) */
.step-left-track {
  animation: marquee-scroll-left 75s linear infinite;
}

.step-right-track {
  animation: marquee-scroll-right 75s linear infinite;
}

@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause scroll on hover */
.client-text-marquee:hover .step-left-track,
.client-text-marquee:hover .step-right-track {
  animation-play-state: paused;
}

/* ==========================================================================
   5. Solutions & Positioning
   ========================================================================== */
.solutions-section { 
  background: var(--dark-navy); 
  color: #fff; 
  padding: 90px 0 0 0; 
}

.section-intro { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 60px; 
}

.intro-left h2 { font-size: 36px; line-height: 1.25; font-weight: 700; }
.intro-right p { color: #a0a5b5; font-size: 16px; }

.cards-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0; 
  transform: translateY(50px); 
}

.card { 
  padding: 45px 35px; 
  min-height: 260px; 
  position: relative; 
}

.card-orange { background: var(--orange); color: #fff; }
.card-white { background: #fff; color: var(--dark-gray); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.card-icon { margin-bottom: 20px; }
.card-icon i { width: 40px; height: 40px; stroke-width: 1.5; }
.card-orange .card-icon i { stroke: #fff; }
.card-white .card-icon i { stroke: var(--orange); }

.card-num { position: absolute; top: 25px; right: 25px; font-size: 18px; font-weight: 800; opacity: 0.15; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 14px; opacity: 0.9; }

/* Positioning Section */
.positioning-section { padding: 140px 0 90px 0; background: var(--light-bg); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-left h2 { font-size: 40px; color: var(--dark-gray); line-height: 1.2; }
.split-right p { font-size: 16px; color: var(--text-body); }

/* ==========================================================================
   6. Our Services (Insights, Chatbots, Agents)
   ========================================================================== */
.capabilities-section { padding: 90px 0; background: #fff; }
.capabilities-section h2 { font-size: 38px; color: var(--dark-gray); margin-bottom: 16px; }
.section-desc { max-width: 850px; margin: 0 auto 40px auto; color: var(--text-body); font-size: 15px; }

.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card-link {
  text-decoration: none;
  color: var(--dark-gray);
  display: block;
}

.service-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  text-align: left;
  transition: all 0.3s ease;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.arrow-pointer {
  color: var(--orange);
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(242, 118, 42, 0.1);
  transform: translateY(-4px);
}

.service-card:hover .arrow-pointer {
  transform: translateX(8px);
}

/* ==========================================================================
   7. Services.html Detailed Layout Rules & Sub-Services Grid
   ========================================================================== */
.services-intro-compact {
  padding: 45px 0 35px 0;
  background: #ffffff;
}

.services-detail-section {
  padding: 40px 0 90px 0;
  background: #ffffff;
}

.service-detail-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 45px;
  margin-bottom: 40px;
}

.service-detail-header {
  margin-bottom: 30px;
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail-header h2 {
  font-size: 32px;
  color: var(--dark-gray);
  font-weight: 800;
  margin-bottom: 14px;
}

.service-intro-text {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 950px;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sub-service-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 22px 20px;
  border-radius: 6px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.sub-service-item:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.sub-service-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.sub-service-icon i {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.sub-service-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.sub-service-content p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   8. Our Work (6-Card Industry Gallery on Home)
   ========================================================================== */
.work-section {
  padding: 90px 0;
  background: var(--dark-navy);
  color: #fff;
}

.work-section h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.work-section .section-desc {
  color: #a0a5b5;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.work-card-formatted {
  background: #252a36;
  border: 1px solid #333a48;
  border-radius: 8px;
  padding: 30px 24px;
  text-align: left;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.work-card-formatted:hover {
  border-color: var(--orange);
  background: #2b313e;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.work-icon-header {
  color: var(--orange);
  margin-bottom: 16px;
}

.work-icon-header i {
  width: 36px;
  height: 36px;
  stroke-width: 1.75;
}

.work-card-formatted h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.work-description {
  font-size: 13.5px;
  color: #c0c5d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.work-link-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
}

/* ==========================================================================
   9. Case Studies Layout Rules (Work.html Page)
   ========================================================================== */
.case-studies-section {
  padding: 90px 0;
  background: #ffffff;
}

.case-single-header h2 {
  font-size: 34px;
  color: var(--dark-gray);
  font-weight: 400;
  line-height: 1.3;
}

.case-single-header h2 strong {
  font-weight: 800;
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 45px;
}

.case-study-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 36px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-study-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.case-title {
  font-size: 26px;
  color: var(--dark-gray);
  font-weight: 800;
  line-height: 1.25;
}

.case-tag {
  background: #fef0e6;
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.case-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 24px;
}

.case-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-block h4 i {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.case-block p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.65;
}

.case-tech-row {
  background: transparent;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.case-tech-row strong {
  color: var(--orange);
  margin-right: 6px;
}

.case-impact-box {
  display: flex;
  gap: 40px;
  background: var(--dark-navy);
  color: #fff;
  padding: 20px 30px;
  border-radius: 6px;
}

.impact-metric {
  display: flex;
  flex-direction: column;
}

.impact-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}

.impact-label {
  font-size: 12px;
  color: #a0a5b5;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   10. Split Hero Layout Rules
   ========================================================================== */
.split-hero {
  background: var(--dark-navy);
  overflow: hidden;
  position: relative;
}

.split-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.split-hero-left {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 80px 40px 80px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-text-wrap {
  max-width: 580px;
}

.split-hero-left h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.split-hero-left h1 .highlight {
  color: var(--orange);
}

.split-hero-left p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.6;
}

.split-hero-right {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.hero-graphic-wrap {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.hero-vector-svg {
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
}

.about-intro-section {
  padding: 80px 0;
}

.main-heading {
  font-size: 30px;
  color: var(--dark-gray);
  max-width: 950px;
  margin: 12px auto 30px auto;
  line-height: 1.3;
  font-weight: 400;
}

.main-heading strong { font-weight: 800; }

.lead-text {
  font-size: 15px;
  color: var(--text-body);
  max-width: 1000px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.experience-block {
  max-width: 950px;
  margin: 0 auto;
}

.experience-block h3 {
  font-size: 32px;
  color: var(--dark-gray);
  margin-bottom: 16px;
  font-weight: 500;
}

.experience-block h3 strong { font-weight: 800; }

.core-values-section {
  padding: 80px 0 100px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border-color);
}

.values-heading {
  font-size: 34px;
  color: var(--dark-gray);
  max-width: 900px;
  margin: 12px auto 60px auto;
  line-height: 1.25;
  font-weight: 400;
}

.values-heading strong { font-weight: 800; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.value-card { background: transparent; }

.value-icon {
  color: var(--orange);
  margin-bottom: 16px;
}

.value-icon i {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.value-card h3 {
  font-size: 20px;
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   11. Contact Section, Forms & Offices
   ========================================================================== */
.contact-section { 
  padding: 90px 0; 
  background: #fff; 
  border-top: 1px solid var(--border-color); 
}

.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
}

.contact-info h3, 
.contact-form-wrap h3 { 
  font-size: 24px; 
  color: var(--orange); 
  font-weight: 800; 
  margin-bottom: 12px; 
}

.brainstorm-text-top {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.office-name {
  font-weight: 700;
  color: var(--dark-gray);
  margin-top: 2px;
}

.info-block { 
  display: flex; 
  gap: 16px; 
  margin-top: 24px; 
}

.icon-circle { 
  background: var(--orange); 
  color: #fff; 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
}

.icon-circle i { 
  width: 20px; 
  height: 20px; 
}

.contact-form { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}

.contact-form input, 
.contact-form textarea {
  width: 100%; 
  padding: 14px; 
  border: 1px solid var(--border-color); 
  border-radius: 4px; 
  font-family: inherit; 
  font-size: 14px;
}

.captcha-wrap {
  margin: 10px 0;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
  border: 1px solid transparent;
}

.form-status--success {
  display: block;
  color: #1e7e34;
  background: #e8f5e9;
  border-color: #a5d6a7;
}

.form-status--error {
  display: block;
  color: #c62828;
  background: #fdecea;
  border-color: #ef9a9a;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================================================================
   12. Footer
   ========================================================================== */
.site-footer { 
  background: var(--dark-navy); 
  color: #a0a5b5; 
  padding: 25px 0; 
  font-size: 14px; 
}

.footer-flex { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.scroll-top { 
  background: var(--orange); 
  color: #fff; 
  border: none; 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.scroll-top i { 
  width: 20px; 
  height: 20px; 
}

/* ==========================================================================
   13. Global Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
  .section-intro, 
  .split-layout, 
  .capabilities-grid, 
  .contact-grid, 
  .cards-grid,
  .values-grid,
  .split-hero-container,
  .case-details-grid { 
    grid-template-columns: 1fr; 
  }

  .sub-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-header {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid { 
    transform: none; 
    margin-top: 40px; 
  }

  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }

  .split-hero-left {
    padding: 60px 20px;
  }

  .split-hero-left h1 {
    font-size: 36px;
  }

  .split-hero-right {
    padding: 40px 20px;
  }

  .case-impact-box {
    flex-direction: column;
    gap: 16px;
  }

  .main-heading { font-size: 24px; }
  .experience-block h3 { font-size: 24px; }
  .values-grid { gap: 30px; }
}

@media (max-width: 600px) {
  .work-gallery-grid,
  .sub-services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    padding: 25px;
  }
}

/* ==========================================================================
   14. Feed.html Layout Rules
   ========================================================================== */
.feed-section {
  padding: 40px 0 90px 0;
  background: #ffffff;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.feed-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 45px 45px 35px 45px; /* Added generous bottom padding */
}

.feed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 15px;
}

.feed-date {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feed-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.feed-tag {
  background: #fef0e6;
  color: var(--orange);
  font-weight: 700;
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feed-title {
  font-size: 30px;
  color: var(--dark-gray);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

.feed-body {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.75;
}

.feed-body p {
  margin-bottom: 18px;
}

.feed-body h3 {
  font-size: 20px;
  color: var(--dark-gray);
  font-weight: 700;
  margin: 28px 0 12px 0;
}

.key-takeaways-box {
  background: var(--dark-navy);
  color: #ffffff;
  padding: 30px 35px;
  border-radius: 8px;
  margin-top: 30px;
}

.key-takeaways-box h4 {
  font-size: 18px;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.key-takeaways-box h4 i {
  width: 22px;
  height: 22px;
}

.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.takeaways-list li {
  font-size: 14.5px;
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  padding-left: 22px;
}

.takeaways-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.takeaways-list li strong {
  color: #ffffff;
}

/* Styled Bold Dark Grey View Source Link */
.feed-source-link {
  margin-top: 32px; /* Clears distance from dark takeaways box */
  margin-bottom: 8px;
}

.feed-source-link a {
  color: var(--dark-gray) !important; /* Bold dark grey text */
  font-weight: 800;
  font-size: 15.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.feed-source-link a:hover {
  color: var(--orange) !important; /* Brand orange highlight on hover */
  text-decoration: underline;
}

.feed-source-link a i,
.feed-source-link a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .feed-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feed-tags {
    justify-content: flex-start;
  }

  .feed-card {
    padding: 25px;
  }

  .feed-title {
    font-size: 24px;
  }
}