/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-offset {
  padding-top: 130px; /* avoid sticky navbar overlap */
}

.hero-offset .swiper.full-screen {
  height: calc(100vh - 130px);
  min-height: 600px;
}

@media (max-width: 991px) {
  .hero-offset {
    padding-top: 110px;
  }
  .hero-offset .swiper.full-screen {
    height: calc(100vh - 110px);
    min-height: 560px;
  }
}

@media (max-width: 767px) {
  .hero-offset {
    padding-top: 100px;
  }
  .hero-offset .swiper.full-screen {
    height: calc(100vh - 100px);
    min-height: 500px;
  }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item .icon {
    font-size: 56px;
  color: var(--c-primary);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--body-color);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
  background: var(--c-primary);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
  background: var(--c-section);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
  color: var(--c-text);
}

/* ===== About Split Section ===== */
.about-split{
  background: var(--c-section);
  padding: 80px 0;
}

.about-split__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

/* Left image */
.about-split__media{
  position: relative;
}

.about-split__img{
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px;
  margin-left: -120px
}

/* Quote overlay card */
.about-split__quote{
  position: absolute;
  right: -120px;      /* “μπαίνει” προς τα δεξιά */
  bottom: 70px;
  width: 520px;
  background: var(--c-white);
  padding: 38px 42px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  border-radius: 4px;
  z-index: 2;
}

.about-split__quote-mark{
  font-size: 48px;
  line-height: 1;
  color: var(--c-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.about-split__quote-text{
  margin: 0;
  font-style: italic;
  font-weight: 600;
  color: var(--c-accent);
  line-height: 1.6;
  letter-spacing: .2px;
}

/* Right content */
.about-split__content{
  max-width: 640px;
  margin-right: -220px;
}

.about-split__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.about-split__name{
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  color: var(--c-accent);
}

.about-split__title{
  margin: 0 0 22px;
  font-size: 52px;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.05;
}

.about-split__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-muted);
}


/* ===== Responsive ===== */
@media (max-width: 1100px){
  .about-split__wrap{
    grid-template-columns: 460px 1fr;
    gap: 50px;
  }
  .about-split__quote{
    right: -70px;
    width: 460px;
  }
  .about-split__img{
    height: 520px;
  }
}

@media (max-width: 900px){
  .about-split{
    padding: 60px 0;
  }
  .about-split__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-split__img{
    height: 420px;

  }
  .about-split__quote{
    position: static; /* πάει κάτω από την εικόνα */
    width: auto;
    margin-top: -24px; /* λίγο overlap */
  }
  .about-split__name{
    font-size: 28px;
  }
  .about-split__title{
    font-size: 40px;
  }
}
/* === TUNING OVERRIDES for About Split === */

/* 1) Κάνε το wrap πιο "γεμάτο" και βάλε μεγαλύτερη στήλη εικόνας */
.about-split__wrap{
  width: min(1320px, 94%);          /* λίγο πιο wide container */
  grid-template-columns: 620px 1fr; /* μεγαλύτερη στήλη εικόνας */
  gap: 90px;                        /* περισσότερο κενό προς content */
}

/* 2) Τράβα την εικόνα ΑΡΙΣΤΕΡΑ (το κλασικό “editorial” look) */
.about-split__media{
  margin-left: -70px;   /* αλλάζεις αυτό για περισσότερο/λιγότερο */
}

/* 3) Κάνε την εικόνα λίγο πιο "wider" και σταθερή */
.about-split__img{
  height: 600px;        /* λίγο πιο ψηλή */
  border-radius: 4px;
}

/* 4) Σπρώξε το content πιο δεξιά (χωρίς να χαλάσεις τη ροή) */
.about-split__content{
  padding-left: 30px;   /* μικρό push προς δεξιά */
  max-width: 680px;
}

/* 5) Quote card να κάθεται σωστά (λίγο πιο αριστερά/κεντρικά) */
.about-split__quote{
  right: -80px;         /* ήταν -120px στο αρχικό */
  bottom: 85px;
  width: 540px;
}

/* --- Responsive tweaks --- */
@media (max-width: 1100px){
  .about-split__wrap{
    grid-template-columns: 520px 1fr;
    gap: 60px;
  }
  .about-split__media{ margin-left: -40px; }
  .about-split__img{ height: 540px; }
  .about-split__quote{ right: -20px; width: 480px; }
  .about-split__content{ padding-left: 10px; }
}

@media (max-width: 900px){
  .about-split__wrap{
    width: min(720px, 92%);
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-split__media{ margin-left: -20px; }
  .about-split__content{ padding-left: 0; margin-right: -20px; }
  .about-split__quote{
    position: static;
    width: auto;
    margin-top: -24px;
    right: auto;
  }
}

/* ===== How We Can Work Together ===== */
.work-together{
  padding: 90px 0 70px;
  background: var(--c-white);
}

.work-together__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.work-together__header{
  text-align: center;
  margin-bottom: 56px;
}

.work-together__title{
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--c-accent);
}

.work-together__subtitle{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: .2px;
}

/* Grid */
.work-together__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  align-items: start;
}

/* Card */
.work-card{
  text-align: center;
}

.work-card__media{
  width: 100%;
  aspect-ratio: 1 / 1; /* τετράγωνο όπως στο screenshot */
  overflow: hidden;
  background: var(--c-border);
}

.work-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__title{
  margin: 18px 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-accent);
}

.work-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--c-muted);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA */
.work-together__cta{
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

/* Button styles moved to components/buttons.css for global reuse */

/* ===== Responsive ===== */
@media (max-width: 992px){
  .work-together{
    padding: 70px 0 60px;
  }
  .work-together__grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .work-card__text{
    max-width: 520px;
  }
  .work-together__title{
    font-size: 40px;
  }
}


/* ===== Live With Presence And Purpose ===== */
.presence{
  /* στο screenshot φαίνεται split background: αριστερά μπεζ, δεξιά λευκό */
  background: linear-gradient(90deg, var(--c-section) 0 50%, var(--c-white) 50% 100%);
  padding: 90px 0;
}

.presence__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 90px;
  align-items: center;
}

/* Left image */
.presence__media img{
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Right content */
.presence__title{
  margin: 0 0 28px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--c-accent);
}

.presence__list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px;
}

.presence__list li{
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}

/* Check icon (CSS only, no library needed) */
.presence__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--c-accent);
  background: var(--c-white);
}

.presence__support{
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-muted);
  max-width: 520px;
}

.presence__label{
  font-size: 13px;
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 0 18px;
}

/* Button (brand) */
.presence__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--c-primary);
  color: var(--c-white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  transition: background-color .25s ease, transform .2s ease;
}

.presence__btn:hover{
  background: var(--c-secondary);
  color: var(--c-white);
}

.presence__btn:active{
  transform: translateY(1px);
}

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .presence__wrap{
    grid-template-columns: 460px 1fr;
    gap: 60px;
  }
  .presence__media img{ height: 520px; }
  .presence__title{ font-size: 44px; }
}

@media (max-width: 900px){
  .presence{
    background: var(--c-section); /* απλοποίηση σε mobile */
    padding: 70px 0;
  }
  .presence__wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .presence__media img{ height: 420px; }
  .presence__title{ font-size: 38px; }
}

/* ===== Milestones (Dark) ===== */
.milestones{
  background: var(--c-accent);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Optional: subtle vignette */
.milestones::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 450px at 50% 10%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}

.milestones__wrap{
  width: min(1250px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 420px 360px;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left title */
.milestones__heading{
  margin: 0 0 34px;
  color: #fff;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
}

/* Center big image */
.milestones__hero{
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,.06);
}
.milestones__hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right top text block */
.milestones__top{
  margin-top: 8px;
  margin-bottom: 26px;
}
.milestones__small-title{
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
}
.milestones__small-text{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.9;
}

/* Cards */
.milestone-card{
  text-align: center;
}

.milestone-card__img{
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,.06);
}

.milestone-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.milestone-card__title{
  margin: 18px 0 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.milestone-card__text{
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.9;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Right card aligns like screenshot (title below image) */
.milestone-card--right .milestone-card__text{
  max-width: 340px;
}

/* Decorative leaf corners (optional images) */
.milestones .milestones__leaf-left,
.milestones .milestones__leaf-right{
  position:absolute;
  width: 120px;
  opacity: .75;
  pointer-events:none;
}
.milestones .milestones__leaf-left{ left: 18px; top: 120px; }
.milestones .milestones__leaf-right{ right: 26px; bottom: 55px; transform: rotate(-10deg); }

/* ===== Responsive ===== */
@media (max-width: 1100px){
  .milestones__wrap{
    grid-template-columns: 320px 380px 320px;
    gap: 48px;
  }
  .milestones__heading{ font-size: 38px; }
  .milestones__hero{ height: 480px; }
  .milestone-card__img{ height: 290px; }
}

@media (max-width: 900px){
  .milestones{
    padding: 70px 0;
  }
  .milestones__wrap{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .milestones__hero{
    height: 420px;
    order: 2;
  }
  .milestones__col--right{ order: 3; }
  .milestones__heading{ text-align: center; }
  .milestones__top{ text-align: center; }
}
/* ===== Testimonials ===== */
.testimonials{
  background: var(--c-section, #FCF5F0);
  padding: 90px 0 80px;
}

.testimonials__wrap{
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: center;
}

.testimonials__title{
  margin: 0 0 22px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: var(--fw-heading, 800);
  font-family: var(--font-heading, serif);
  color: var(--c-accent, #212121);
}

.testimonials__quote-mark{
  font-size: 52px;
  line-height: 1;
  color: var(--c-primary, #AB6530);
  font-weight: 800;
  margin: 10px 0 18px;
}

.testimonials__lead{
  margin: 0 auto 36px;
  max-width: 860px;
  font-size: 15px;
  line-height: 2.0;
  color: var(--c-accent, #212121);
  letter-spacing: .2px;
}

.testimonials__qa{
  display: grid;
  gap: 26px;
  margin-top: 10px;
}

.testimonials__block{
  max-width: 760px;
  margin: 0 auto;
}

.testimonials__q{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--c-accent, #212121);
  font-size: 15px;
  margin-bottom: 10px;
}

.testimonials__diamond{
  color: #2a6fd6; /* μικρό μπλε diamond όπως screenshot */
  font-size: 14px;
  transform: translateY(-1px);
}

.testimonials__checks{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.testimonials__checks li{
  position: relative;
  padding-left: 26px;
  display: inline-block;
  color: var(--c-accent, #212121);
  font-weight: 700;
}

.testimonials__checks li::before{
  content: "☑";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent, #212121);
  font-size: 14px;
}

.testimonials__a{
  margin: 0;
  font-size: 15px;
  line-height: 2.0;
  color: var(--c-accent, #212121);
}

.testimonials__name{
  margin-top: 38px;
  font-weight: 700;
  color: var(--c-accent, #212121);
}

/* Responsive */
@media (max-width: 900px){
  .testimonials{
    padding: 70px 0 60px;
  }
  .testimonials__title{
    font-size: 40px;
  }
  .testimonials__lead,
  .testimonials__a{
    font-size: 14px;
    line-height: 1.9;
  }
}

/* ===== Services / Pricing (Premium Cards) ===== */
.plans{
  background:  #f0ddd0; /* απαλό beige */
  padding: 95px 0 85px;
}

.plans__wrap{
  width: min(1220px, 92%);
  margin: 0 auto;
}

.plans__title{
  text-align: center;
  margin: 0 0 56px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: var(--fw-heading, 800);
  font-family: var(--font-heading, serif);
  color: var(--c-accent, #212121);
}

/* Grid */
.plans__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch; /* ίσο ύψος */
}

/* Card */
.plan{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  overflow: hidden;
}

/* Inner layout locks symmetry */
.plan__inner{
  height: 100%;
  padding: 38px 36px 32px;
  display: flex;
  flex-direction: column;
}

/* Featured subtle highlight */
.plan--featured{
  border-color: rgba(171,101,48,.18);
  box-shadow: 0 22px 55px rgba(171,101,48,.12);
}

.plan__badge{
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid rgba(171,101,48,.35);
  color: var(--c-primary, #AB6530);
  font-weight: 800;
  font-size: 13px;
  border-radius: 2px;
}

/* Head */
.plan__name{
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--c-accent, #212121);
}

/* Benefits list */
.plan__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.plan__list li{
  position: relative;
  padding-left: 30px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.6;
}

.plan__list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.25);
  font-size: 12px;
  color: #333;
  background: #fff;
}

/* Ecommerce-style pricing */
.service-price{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.service-price .price-old{
  position: relative;
  opacity: .55;
  font-weight: 700;
  font-size: 18px;
}

.service-price .price-old::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.service-price .price-new{
  color: #AB6530;
  font-weight: 900;
  font-size: 26px;
}

.service-price .price-new--free{
  font-size: 24px;
}

/* Button always at bottom, same height/position */
.plan__btn{
  margin-top: auto; /* σπρώχνει κάτω */
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px; /* ίδια κουμπιά */
  padding: 14px 16px;
  border: 1px solid var(--c-primary, #AB6530);
  color: var(--c-primary, #AB6530);
  background: transparent;
  text-decoration: none;
  font-weight: 800;
  border-radius: 2px;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.plan__btn:hover{
  background: var(--c-secondary, #914D2C);
  border-color: var(--c-secondary, #914D2C);
  color: #fff;
}

.plan__btn:active{
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 992px){
  .plans{
    padding: 70px 0 60px;
  }
  .plans__title{
    font-size: 40px;
    margin-bottom: 34px;
  }
  .plans__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plan__inner{
    padding: 30px 24px 24px;
  }
}

/* ===== My Signature Program ===== */
.signature{
  background: #fff;
  padding: 95px 0 85px;
}

.signature__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 90px;
  align-items: center;
}

/* Left content */
.signature__title{
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.05;
  font-family: var(--font-heading, serif);
  font-weight: var(--fw-heading, 800);
  color: var(--c-accent, #212121);
}

.signature__text{
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 2.0;
  color: var(--c-text, #424242);
  max-width: 520px;
}

/* Button solid */
.signature__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--c-primary, #AB6530);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 2px;
  transition: background-color .25s ease, transform .2s ease;
}

.signature__btn:hover{
  background: var(--c-secondary, #914D2C);
  color: #fff;
}

.signature__btn:active{
  transform: translateY(1px);
}

/* Right image with backdrop box */
.signature__media{
  position: relative;
  display: flex;
  justify-content: center;
}

/* This is the beige box BEHIND the photo */
.signature__media::before{
  content:"";
  position: absolute;
  width: 88%;
  height: 70%;
  background: var(--c-section, #FCF5F0);
  right: -28px;  /* offset όπως screenshot */
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* Photo */
.signature__media img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 1000px){
  .signature__wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .signature__media{
    justify-content: flex-start;
  }
  .signature__media::before{
    width: 92%;
    height: 70%;
    right: -14px;
  }
  .signature__media img{
    max-width: 680px;
    height: 360px;
  }
  .signature__title{
    font-size: 40px;
  }
}
/* CTA Section Icon Background */
.feature-box.feature-box-left-icon-middle .feature-box-icon {
  background-color: var(--c-primary) !important;
}

/* ===== Home Blog Preview ===== */
.home-blog-preview {
  background: #f7f7f7;
  padding: 96px 0 86px;
}

.home-blog-preview__wrap {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.home-blog-preview__header {
  text-align: center;
  margin-bottom: 52px;
}

.home-blog-preview__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #d97339;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.home-blog-preview__title {
  margin: 0;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 700;
  color: #222834;
}

.home-blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.home-blog-preview__grid--single {
  grid-template-columns: 360px;
  justify-content: start;
}

.home-blog-card {
  background: #fff;
  box-shadow: 0 20px 50px rgba(25, 32, 56, 0.08);
  overflow: hidden;
  border-radius: 2px;
}

.home-blog-card__link {
  display: block;
  text-decoration: none;
}

.home-blog-card__media {
  height: 300px;
  background: #fcf5f0;
  overflow: hidden;
}

.home-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-blog-card__media--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.home-blog-card__media--fallback span {
  color: var(--c-primary);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.home-blog-card__body {
  padding: 28px 28px 24px;
}

.home-blog-card__title {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2937;
}

.home-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.home-blog-card__excerpt {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #5f6673;
}

.home-blog-card__meta {
  font-size: 14px;
  color: #8f9198;
}

@media (max-width: 1100px) {
  .home-blog-preview__title {
    font-size: 46px;
  }

  .home-blog-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-blog-preview {
    padding: 74px 0 66px;
  }

  .home-blog-preview__header {
    margin-bottom: 34px;
  }

  .home-blog-preview__title {
    font-size: 34px;
  }

  .home-blog-preview__grid,
  .home-blog-preview__grid--single {
    grid-template-columns: 1fr;
  }

  .home-blog-card__media {
    height: 240px;
  }
}