/* GREATPOL Trade Ltd.
   Premium responsive website stylesheet
   Brand colors: white and navy #012e6e
*/

:root {
  --navy: #012e6e;
  --navy-dark: #001c45;
  --white: #ffffff;
  --cream: #f7f4ef;
  --sand: #e8dece;
  --coffee: #5b422f;
  --muted: #697487;
  --line: rgba(1, 46, 110, 0.12);
  --shadow: 0 28px 80px rgba(1, 46, 110, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 100%;
  --page-pad: clamp(18px, 3vw, 56px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(232, 222, 206, 0.42), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(1, 46, 110, 0.08);
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-height: 82px;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-right {
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  padding: 30px 0;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.28s ease;
}

.nav-item:hover::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 210px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(1, 46, 110, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: transparent;
  transition: 0.2s ease;
}

.dropdown a:hover {
  background: #f3f6fb;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  min-width: 236px;
}

.logo img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  display: block;
}

.contact-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.25s ease;
  cursor: pointer;
}

.contact-btn,
.primary-btn {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(1, 46, 110, 0.20);
}

.contact-btn:hover,
.primary-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border-color: rgba(1, 46, 110, 0.18);
}

.secondary-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.light-btn {
  background: #fff;
  color: var(--navy);
}

.light-btn:hover {
  background: #f3f6fb;
  color: var(--navy-dark);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  transition: 0.2s ease;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 18px 24px 28px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-weight: 750;
  color: var(--navy-dark);
  border-bottom: 1px solid rgba(1, 46, 110, 0.08);
}

.mobile-sub {
  padding-left: 18px !important;
  color: var(--navy) !important;
}

/* HERO */
.hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 44px var(--page-pad) 90px;
}

.hero-card {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 28, 69, 0.86) 0%, rgba(0, 28, 69, 0.50) 42%, rgba(0, 28, 69, 0.12) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.02);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  padding: 96px 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.88;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
  max-width: 860px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(42px, 5.8vw, 76px);
  color: var(--navy-dark);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  margin-bottom: 34px;
}

/* SECTIONS */
.section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 88px var(--page-pad);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.section-text p,
.card p,
.article-card p,
.form-card p {
  color: var(--muted);
  font-size: 17px;
}

.section-text p + p {
  margin-top: 18px;
}

.section-narrow {
  max-width: 780px;
}

.text-navy {
  color: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.image-frame {
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--sand);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--image);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.image-frame:hover::before {
  transform: scale(1.06);
}

.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.muted-bg {
  background: var(--cream);
  border-block: 1px solid rgba(1, 46, 110, 0.08);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.article-card,
.form-card,
.address-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(1, 46, 110, 0.10);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 55px rgba(1, 46, 110, 0.06);
  transition: 0.25s ease;
}

.card:hover,
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(1, 46, 110, 0.12);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #eff4fb;
  color: var(--navy);
  font-weight: 900;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.feature-panel {
  padding: 44px;
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 470px;
}

.feature-panel h2,
.feature-panel h3 {
  color: var(--white);
}

.feature-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-light {
  background: #eff4fb;
  border-color: rgba(1, 46, 110, 0.1);
}

/* CTA */
.cta {
  width: 100%;
  max-width: none;
  margin: 88px auto;
  padding: 0 var(--page-pad);
}

.cta-inner {
  border-radius: 38px;
  padding: 72px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 28, 69, 0.94), rgba(1, 46, 110, 0.78)),
    url("https://images.unsplash.com/photo-1519174329590-17f823a8a5ce?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

/* PAGE HERO */
.page-hero {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 44px var(--page-pad) 70px;
}

.page-hero-inner {
  min-height: 430px;
  border-radius: 38px;
  padding: 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 28, 69, 0.88), rgba(1, 46, 110, 0.36)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero-freego {
  background-position: center right;
}

.page-hero h1 {
  max-width: 960px;
  margin-bottom: 18px;
}

.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
  margin-top: 36px;
}

.gallery .image-frame {
  min-height: 310px;
}

.gallery .image-frame:first-child {
  grid-row: span 2;
  min-height: 640px;
}

/* BLOG */
.article-card time {
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 18px;
  font-size: 30px;
}

.read-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(1, 46, 110, 0.16);
  border-radius: 18px;
  padding: 15px 16px;
  background: #fbfcfe;
  color: var(--navy-dark);
  outline: none;
  transition: 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(1, 46, 110, 0.08);
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.anti-spam-box {
  background: #f3f6fb;
  border: 1px dashed rgba(1, 46, 110, 0.22);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
}

.address-email {
  margin-top: 18px;
}

.map-frame {
  margin-top: 24px;
  height: 360px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  margin-top: 70px;
}

.footer-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(74px, 7vw, 128px) var(--page-pad) clamp(62px, 6vw, 106px);
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 112px);
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: block;
  width: clamp(340px, 31vw, 560px);
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
  text-align: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.70);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-contact a {
  color: var(--white);
  transition: color 0.22s ease;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.76);
}

.footer-address {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.62;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-social a {
  width: clamp(46px, 3.2vw, 58px);
  height: clamp(46px, 3.2vw, 58px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-bottom {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 26px var(--page-pad) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.60);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ROUTING ANIMATION */
.page {
  display: none;
  animation: fadeUp 0.38s ease both;
}

.page.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left,
  .nav-right .contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    justify-content: flex-start;
    width: 182px;
    min-width: 182px;
  }

  .logo img {
    height: 62px;
  }

  .hero-card {
    min-height: 620px;
  }

  .hero-content,
  .page-hero-inner,
  .cta-inner {
    padding: 48px 30px;
  }

  .section-grid,
  .section-grid.reverse,
  .split-feature,
  .contact-layout,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.three,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery .image-frame:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-logo {
    width: min(440px, 86vw);
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    flex-wrap: wrap;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 0 16px;
    min-height: 72px;
  }

  .logo {
    width: 150px;
    min-width: 150px;
  }

  .logo img {
    height: 54px;
  }

  .footer-inner {
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .footer-contact {
    font-size: 13px;
  }

  .footer-address {
    font-size: 14px;
  }

  .hero,
  .page-hero {
    padding: 24px 16px 54px;
  }

  .hero-card,
  .page-hero-inner,
  .cta-inner {
    border-radius: 26px;
  }

  .hero-card {
    min-height: 560px;
  }

  .hero-content,
  .page-hero-inner,
  .cta-inner,
  .feature-panel,
  .card,
  .article-card,
  .form-card,
  .address-card {
    padding: 30px 22px;
  }

  .section {
    padding: 62px 16px;
  }

  .cta {
    margin: 62px auto;
    padding: 0 16px;
  }

  .image-frame {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
  }
}

/* INSIDE ARTICLE UPDATE */
.inside-listing {
  padding-top: 0;
}

.article-card-featured {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
}

.article-preview-media {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #eef4ff;
}

.article-preview-media img,
.article-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-preview-copy h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.article-page-hero {
  padding-bottom: 28px;
}

.article-hero-inner {
  background: linear-gradient(135deg, #f6f9ff 0%, #edf3fc 100%);
  color: var(--navy-dark);
  min-height: auto;
  display: grid;
  align-items: center;
}

.article-hero-inner .eyebrow,
.article-hero-inner .back-link {
  color: var(--navy);
}

.article-hero-inner h1,
.article-hero-inner p {
  color: var(--navy-dark);
}

.article-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
}

.article-hero-copy {
  max-width: 820px;
}


.article-hero-copy p {
  margin-top: 12px;
  font-size: 17px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero-media {
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 24px 60px rgba(1, 46, 110, 0.12);
}

.article-layout {
  padding-top: 14px;
}

.article-content-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(1, 46, 110, 0.10);
  border-radius: 34px;
  box-shadow: 0 20px 55px rgba(1, 46, 110, 0.06);
}

.article-content-card h2,
.article-content-card h3 {
  margin-top: 36px;
  margin-bottom: 16px;
}

.article-content-card p,
.article-content-card li {
  color: rgba(16, 37, 66, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.article-content-card ul {
  margin: 18px 0 8px 0;
  padding-left: 24px;
}

.article-content-card li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .article-card-featured,
  .article-hero-grid {
    grid-template-columns: 1fr;
  }

  .article-preview-media {
    min-height: 360px;
  }

  .article-hero-media {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .article-card-featured,
  .article-content-card {
    padding: 22px;
  }

  .article-preview-media {
    min-height: 300px;
  }

  .article-hero-media {
    min-height: 340px;
  }

  .article-content-card p,
  .article-content-card li {
    font-size: 16px;
  }
}
#page-inside-freego-distribution .article-hero-inner {
  position: relative !important;
  overflow: hidden !important;
  min-height: 640px !important;
  border-radius: 34px !important;

  background-image:
    linear-gradient(90deg, rgba(246,249,255,0.96) 0%, rgba(246,249,255,0.78) 42%, rgba(246,249,255,0.08) 100%),
    url("https://greatpol.com/assets/images/inside-freego-distribution.png") !important;

  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}

#page-inside-freego-distribution .article-hero-inner::before {
  display: none !important;
}

#page-inside-freego-distribution .article-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  max-width: 780px !important;
}
#page-inside-freego-distribution .article-hero-inner::before {
  display: none !important;
  background: none !important;
}

/* === FINAL FIX: INSIDE ARTICLE HERO === */
#page-inside-freego-distribution .article-bg-hero {
  padding: 44px var(--page-pad) 70px !important;
}

#page-inside-freego-distribution .article-hero-bg {
  position: relative !important;
  overflow: hidden !important;
  min-height: 640px !important;
  border-radius: 38px !important;
  padding: 72px !important;
  box-shadow: var(--shadow) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  background:
    linear-gradient(90deg, rgba(0, 28, 69, 0.28) 0%, rgba(0, 28, 69, 0.48) 38%, rgba(0, 28, 69, 0.88) 100%),
    url("https://greatpol.com/assets/images/inside-freego-distribution.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
}

#page-inside-freego-distribution .article-hero-bg::before,
#page-inside-freego-distribution .article-hero-bg::after {
  display: none !important;
  content: none !important;
}

#page-inside-freego-distribution .article-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: left !important;
}

#page-inside-freego-distribution .article-hero-copy .back-link,
#page-inside-freego-distribution .article-hero-copy .eyebrow,
#page-inside-freego-distribution .article-hero-copy h1,
#page-inside-freego-distribution .article-hero-copy p {
  color: #ffffff !important;
}

#page-inside-freego-distribution .article-hero-copy h1 {
  font-size: clamp(34px, 4vw, 62px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  max-width: 760px !important;
  margin-bottom: 0 !important;
}

#page-inside-freego-distribution .article-date {
  margin-top: 86px !important;
  font-size: 18px !important;
}

@media (max-width: 980px) {
  #page-inside-freego-distribution .article-hero-bg {
    min-height: 590px !important;
    padding: 44px 30px !important;
    background:
      linear-gradient(90deg, rgba(0, 28, 69, 0.52) 0%, rgba(0, 28, 69, 0.66) 48%, rgba(0, 28, 69, 0.90) 100%),
      url("https://greatpol.com/assets/images/inside-freego-distribution.png") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  #page-inside-freego-distribution .article-hero-copy {
    width: 100% !important;
    max-width: 680px !important;
  }
}

@media (max-width: 560px) {
  #page-inside-freego-distribution .article-hero-bg {
    min-height: 560px !important;
    padding: 30px 22px !important;
    justify-content: flex-start !important;
    background:
      linear-gradient(180deg, rgba(0, 28, 69, 0.82) 0%, rgba(0, 28, 69, 0.62) 100%),
      url("https://greatpol.com/assets/images/inside-freego-distribution.png") !important;
    background-size: cover !important;
    background-position: center center !important;
  }

  #page-inside-freego-distribution .article-hero-copy h1 {
    font-size: 32px !important;
    line-height: 1.08 !important;
  }

  #page-inside-freego-distribution .article-date {
    margin-top: 46px !important;
    font-size: 16px !important;
  }
}

/* GREATPOL TEAM - ABOUT SECTION FINAL */
#page-about .team-section {
  padding-top: 18px !important;
  padding-bottom: 96px !important;
  background: transparent !important;
}

#page-about .team-section h2 {
  font-size: clamp(62px, 7.4vw, 112px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.06em !important;
  margin: 0 0 48px !important;
  color: var(--navy-dark) !important;
}

#page-about .team-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.4vw, 42px) !important;
  align-items: stretch !important;
}

#page-about .team-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  background: #ffffff !important;
  border: 1px solid rgba(1, 46, 110, 0.08) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(1, 46, 110, 0.10) !important;
  transform: none !important;
}

#page-about .team-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 32px 76px rgba(1, 46, 110, 0.14) !important;
}

#page-about .team-photo {
  height: clamp(380px, 32vw, 520px) !important;
  background: #eef2f7 !important;
  overflow: hidden !important;
}

#page-about .team-photo img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center top !important;
}

#page-about .team-card-body {
  padding: 34px 38px 38px !important;
  background: #ffffff !important;
}

#page-about .team-card h3 {
  font-size: clamp(38px, 3.2vw, 52px) !important;
  line-height: 1 !important;
  letter-spacing: -0.055em !important;
  margin: 0 0 14px !important;
  color: var(--navy-dark) !important;
}

#page-about .team-card p {
  margin: 0 0 10px !important;
  color: #6b7385 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

#page-about .team-card a {
  display: inline-block !important;
  margin-top: 4px !important;
  color: var(--navy) !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 760 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 980px) {
  #page-about .team-grid {
    grid-template-columns: 1fr !important;
  }

  #page-about .team-photo {
    height: 460px !important;
  }
}

@media (max-width: 560px) {
  #page-about .team-section {
    padding-top: 8px !important;
    padding-bottom: 62px !important;
  }

  #page-about .team-section h2 {
    font-size: 56px !important;
    margin-bottom: 28px !important;
  }

  #page-about .team-photo {
    height: 360px !important;
  }

  #page-about .team-card-body {
    padding: 28px 24px 30px !important;
  }

  #page-about .team-card h3 {
    font-size: 38px !important;
  }
}


/* CONTACT OFFICE UPDATE */
.address-card .office-heading {
  margin-top: 30px !important;
  margin-bottom: 12px !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1 !important;
}

/* === GREEN COFFEE COUNTRY GALLERIES === */
.coffee-country-galleries {
  margin-top: 72px;
  display: grid;
  gap: 86px;
}

.coffee-country-block h2 {
  margin-bottom: 30px;
  color: var(--navy-dark);
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.coffee-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 22px;
}

.coffee-gallery-item {
  overflow: hidden;
  border-radius: 28px;
  background: var(--sand);
  box-shadow: 0 22px 58px rgba(1, 46, 110, 0.10);
  border: 1px solid rgba(1, 46, 110, 0.08);
}

.coffee-gallery-item.featured {
  grid-row: span 2;
}

.coffee-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.coffee-gallery-item:hover img {
  transform: scale(1.055);
}

@media (max-width: 980px) {
  .coffee-country-galleries {
    gap: 62px;
  }

  .coffee-gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .coffee-gallery-item.featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .coffee-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 16px;
  }

  .coffee-gallery-item.featured {
    min-height: 340px;
  }
}


/* === GREEN COFFEE COUNTRY PAGES === */
.coffee-origin-cards .card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
}

.coffee-origin-cards .read-link {
  margin-top: auto;
}

.country-block-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.country-block-heading h2 {
  margin-bottom: 0;
}

.country-block-heading .read-link {
  margin-top: 0;
  margin-bottom: 12px;
  white-space: nowrap;
}

.coffee-detail-hero .page-hero-inner {
  min-height: 620px;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(0, 28, 69, 0.88) 0%, rgba(1, 46, 110, 0.58) 46%, rgba(1, 46, 110, 0.14) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
}

.coffee-detail-hero h1 {
  max-width: 980px;
}

.coffee-detail-intro {
  padding-top: 44px;
}

.coffee-detail-intro .section-narrow .read-link {
  margin-top: 0;
  margin-bottom: 26px;
}

.coffee-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  margin-bottom: 60px;
}

.coffee-type-grid .card {
  min-height: 210px;
}

.coffee-detail-gallery {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .country-block-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .country-block-heading .read-link {
    margin-bottom: 0;
  }

  .coffee-type-grid {
    grid-template-columns: 1fr;
  }

  .coffee-detail-hero .page-hero-inner {
    min-height: 560px;
  }
}

/* === GREEN COFFEE 3-IMAGE GALLERIES + BUTTON STYLE === */
#page-green-coffee .coffee-gallery-mosaic {
  display: grid !important;
  grid-template-columns: 1.25fr 1fr !important;
  grid-template-rows: 260px 260px !important;
  gap: 22px !important;
}

#page-green-coffee .coffee-gallery-item.featured {
  grid-row: span 2 !important;
}

#page-green-coffee .country-block-heading {
  align-items: center !important;
}

#page-green-coffee .country-block-heading .read-link,
#page-green-coffee .coffee-origin-cards .read-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 18px 38px rgba(1, 46, 110, 0.20) !important;
  border: 1px solid transparent !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-top: 24px !important;
  transition: 0.25s ease !important;
}

#page-green-coffee .country-block-heading .read-link {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  white-space: nowrap !important;
}

#page-green-coffee .country-block-heading .read-link:hover,
#page-green-coffee .coffee-origin-cards .read-link:hover {
  background: var(--navy-dark) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 980px) {
  #page-green-coffee .coffee-gallery-mosaic {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  #page-green-coffee .coffee-gallery-item,
  #page-green-coffee .coffee-gallery-item.featured {
    grid-row: auto !important;
    min-height: 340px !important;
  }

  #page-green-coffee .country-block-heading {
    align-items: flex-start !important;
  }
}

@media (max-width: 560px) {
  #page-green-coffee .coffee-gallery-item,
  #page-green-coffee .coffee-gallery-item.featured {
    min-height: 280px !important;
  }

  #page-green-coffee .country-block-heading .read-link,
  #page-green-coffee .coffee-origin-cards .read-link {
    min-height: 50px !important;
    padding: 0 24px !important;
  }
}

/* === REAL PROFESSIONAL FOOTER LAYOUT === */
.footer-pro {
  background: var(--navy-dark) !important;
  color: #ffffff !important;
  margin-top: 70px !important;
}

.footer-pro-inner {
  width: 100% !important;
  min-height: 300px !important;
  padding: 44px var(--page-pad) 44px !important;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.85fr) minmax(560px, 1fr) 72px !important;
  gap: clamp(34px, 5vw, 92px) !important;
  align-items: center !important;
}

.footer-pro-brand {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.footer-pro .footer-logo {
  width: clamp(300px, 28vw, 500px) !important;
  display: block !important;
}

.footer-pro .footer-logo img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.footer-pro-content {
  display: grid !important;
  gap: 24px !important;
  align-items: center !important;
}

.footer-pro-topline {
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
}

.footer-pro-email {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  color: #ffffff !important;
  font-size: clamp(16px, 1.25vw, 22px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.footer-pro-email span {
  color: rgba(255,255,255,0.62) !important;
}

.footer-pro-offices {
  display: grid !important;
  grid-template-columns: 1.08fr 0.92fr !important;
  gap: clamp(28px, 4vw, 72px) !important;
}

.footer-pro-offices address {
  margin: 0 !important;
  font-style: normal !important;
  color: rgba(255,255,255,0.70) !important;
  font-size: clamp(12px, 0.85vw, 15px) !important;
  line-height: 1.52 !important;
  text-align: left !important;
}

.footer-pro-offices strong {
  display: block !important;
  margin-bottom: 7px !important;
  color: rgba(255,255,255,0.90) !important;
  font-size: clamp(11px, 0.78vw, 14px) !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.footer-pro-social {
  height: 100% !important;
  min-height: 210px !important;
  padding-left: 22px !important;
  border-left: 1px solid rgba(255,255,255,0.12) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
}

.footer-pro-social a {
  width: 48px !important;
  height: 48px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  transition: 0.22s ease !important;
}

.footer-pro-social a:hover {
  transform: translateY(-3px) !important;
  background: rgba(255,255,255,0.16) !important;
}

.footer-pro-social svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
}

.footer-pro-bottom {
  padding: 15px var(--page-pad) 18px !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.52) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
}

/* hide old footer styles if any old wrapper remains */
.footer-pro .footer-inner,
.footer-pro .footer-right,
.footer-pro .footer-info,
.footer-pro .footer-address,
.footer-pro .footer-contact,
.footer-pro .footer-social {
  all: unset;
}

@media (max-width: 1040px) {
  .footer-pro-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    min-height: auto !important;
    gap: 28px !important;
  }

  .footer-pro-brand {
    justify-content: center !important;
  }

  .footer-pro-content {
    justify-items: center !important;
  }

  .footer-pro-topline {
    width: min(720px, 100%) !important;
  }

  .footer-pro-offices {
    width: min(720px, 100%) !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .footer-pro-offices address {
    text-align: center !important;
  }

  .footer-pro-social {
    height: auto !important;
    min-height: auto !important;
    padding-left: 0 !important;
    border-left: 0 !important;
    flex-direction: row !important;
  }
}

@media (max-width: 560px) {
  .footer-pro-inner {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .footer-pro .footer-logo {
    width: min(360px, 86vw) !important;
  }

  .footer-pro-email {
    flex-wrap: wrap !important;
    justify-content: center !important;
    font-size: 14px !important;
  }
}



/* === CONTACT MAPS + BLOG NAME UPDATE === */
.map-frame-poland {
  margin-top: 28px !important;
}

#page-contact .address-card .office-heading {
  font-size: clamp(32px, 3.2vw, 48px) !important;
}

#page-contact .map-frame {
  height: 360px !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}

/* === COFFEE DETAIL TEXT + FIVE PHOTO GALLERIES === */
.coffee-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: -34px;
  margin-bottom: 64px;
}

.coffee-info-grid .card {
  min-height: 230px;
}

.coffee-detail-page .coffee-detail-gallery {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr 0.8fr !important;
  grid-auto-rows: 250px !important;
  gap: 22px !important;
}

.coffee-detail-page .coffee-detail-gallery .coffee-gallery-item.featured {
  grid-row: span 2 !important;
}

@media (max-width: 980px) {
  .coffee-info-grid {
    grid-template-columns: 1fr !important;
    margin-top: 24px !important;
  }

  .coffee-detail-page .coffee-detail-gallery {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 230px !important;
  }

  .coffee-detail-page .coffee-detail-gallery .coffee-gallery-item.featured {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 360px !important;
  }
}

@media (max-width: 560px) {
  .coffee-detail-page .coffee-detail-gallery {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 260px !important;
    gap: 16px !important;
  }

  .coffee-detail-page .coffee-detail-gallery .coffee-gallery-item.featured {
    min-height: 340px !important;
  }
}

/* === COFFEE DETAIL INTRO: SPLIT LAYOUT LIKE REFERENCE === */
.coffee-detail-intro {
  padding-top: 54px !important;
}

.coffee-detail-split {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  gap: clamp(42px, 7vw, 110px) !important;
  align-items: start !important;
  max-width: none !important;
  width: 100% !important;
  margin-bottom: 56px !important;
}

.coffee-detail-heading h2 {
  font-size: clamp(54px, 6.6vw, 96px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
  margin-bottom: 0 !important;
}

.coffee-detail-heading .read-link {
  margin-top: 0 !important;
  margin-bottom: 28px !important;
  font-size: 12px !important;
}

.coffee-detail-copy {
  padding-top: 70px !important;
}

.coffee-detail-copy p {
  color: var(--muted) !important;
  font-size: clamp(18px, 1.28vw, 23px) !important;
  line-height: 1.62 !important;
  max-width: 980px !important;
}

.coffee-detail-copy p + p {
  margin-top: 24px !important;
}

.coffee-detail-intro .coffee-type-grid {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .coffee-detail-split {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .coffee-detail-copy {
    padding-top: 0 !important;
  }

  .coffee-detail-heading h2 {
    font-size: clamp(44px, 10vw, 68px) !important;
  }
}

@media (max-width: 560px) {
  .coffee-detail-heading h2 {
    font-size: 42px !important;
  }

  .coffee-detail-copy p {
    font-size: 17px !important;
  }
}

/* === ETHIOPIA SAME AS KENYA FINAL FIX === */
.coffee-detail-split {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  gap: clamp(42px, 7vw, 110px) !important;
  align-items: start !important;
  max-width: none !important;
  width: 100% !important;
  margin-bottom: 56px !important;
}

.coffee-detail-heading h2 {
  font-size: clamp(54px, 6.6vw, 96px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
  margin-bottom: 0 !important;
}

.coffee-detail-copy {
  padding-top: 70px !important;
}

.coffee-detail-copy p {
  color: var(--muted) !important;
  font-size: clamp(18px, 1.28vw, 23px) !important;
  line-height: 1.62 !important;
}

.coffee-detail-page .coffee-detail-gallery {
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr 0.8fr !important;
  grid-auto-rows: 250px !important;
  gap: 22px !important;
}

.coffee-detail-page .coffee-detail-gallery .coffee-gallery-item.featured {
  grid-row: span 2 !important;
}

@media (max-width: 980px) {
  .coffee-detail-split {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .coffee-detail-copy {
    padding-top: 0 !important;
  }

  .coffee-detail-page .coffee-detail-gallery {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 230px !important;
  }

  .coffee-detail-page .coffee-detail-gallery .coffee-gallery-item.featured {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    min-height: 360px !important;
  }
}

@media (max-width: 560px) {
  .coffee-detail-page .coffee-detail-gallery {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 260px !important;
  }
}

/* === BLOG TWO-COLUMN LAYOUT + READ MORE ROUTE FIX === */
#page-inside .inside-listing {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
  padding-top: 0 !important;
}

#page-inside .article-card-featured {
  display: flex !important;
  flex-direction: column !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 24px !important;
}

#page-inside .article-preview-media {
  width: 100% !important;
  min-height: 420px !important;
  height: 420px !important;
  border-radius: 28px !important;
}

#page-inside .article-preview-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

#page-inside .article-preview-copy {
  padding: 26px 8px 8px !important;
}

#page-inside .article-preview-copy h3 {
  font-size: clamp(30px, 2.6vw, 44px) !important;
  line-height: 1.02 !important;
  margin-top: 14px !important;
}

#page-inside .article-preview-copy p {
  font-size: 17px !important;
}

#page-inside .article-preview-copy time,
#page-inside .article-preview-copy > p:first-child {
  color: var(--muted) !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  #page-inside .inside-listing {
    grid-template-columns: 1fr !important;
  }

  #page-inside .article-preview-media {
    height: 360px !important;
    min-height: 360px !important;
  }
}

/* === KALDI BLOG ARTICLE HERO FIX === */
#page-coffee-origin-ethiopia .kaldi-article-hero {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 38px !important;
  color: #ffffff !important;
  box-shadow: var(--shadow) !important;
}

#page-coffee-origin-ethiopia .kaldi-article-hero::before,
#page-coffee-origin-ethiopia .kaldi-article-hero::after {
  display: none !important;
  content: none !important;
}

#page-coffee-origin-ethiopia .kaldi-article-hero h1,
#page-coffee-origin-ethiopia .kaldi-article-hero p,
#page-coffee-origin-ethiopia .kaldi-article-hero .eyebrow,
#page-coffee-origin-ethiopia .kaldi-article-hero .back-link {
  color: #ffffff !important;
}

#page-coffee-origin-ethiopia.page {
  min-height: 100vh !important;
}

@media (max-width: 768px) {
  #page-coffee-origin-ethiopia .kaldi-article-hero {
    padding: 40px 26px !important;
    min-height: 560px !important;
  }

  #page-coffee-origin-ethiopia .kaldi-article-hero h1 {
    font-size: 24px !important;
  }
}

/* === BLOG CARDS SAME TEXT HEIGHT === */
#page-inside .article-card-featured {
  display: flex !important;
  flex-direction: column !important;
}

#page-inside .article-preview-media {
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
}

#page-inside .article-preview-copy {
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding-top: 42px !important;
}

#page-inside .article-preview-copy .read-link {
  margin-top: auto !important;
}

#page-inside .article-preview-copy time,
#page-inside .article-preview-copy > p:first-child {
  min-height: 24px !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
  display: block !important;
}

#page-inside .article-preview-copy h3 {
  min-height: 96px !important;
}

@media (max-width: 980px) {
  #page-inside .article-preview-copy {
    min-height: auto !important;
  }

  #page-inside .article-preview-copy h3 {
    min-height: auto !important;
  }
}

/* === BLOG DATE SAME SIZE FINAL === */
#page-inside .article-preview-copy time,
#page-inside .article-preview-copy > p:first-child,
#page-inside .article-preview-copy > p:first-child strong {
  display: block !important;
  margin: 0 0 18px 0 !important;
  color: var(--muted) !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

#page-inside .article-preview-copy h3 {
  margin-top: 0 !important;
}

