/* ─────────────────────────────────────────
   EU BLOG NEW — Design Tokens
   ───────────────────────────────────────── */
:root {
  --eub-green:       #1F5E3F;
  --eub-green-dark:  #0E3D26;
  --eub-green-mid:   #2C7551;
  --eub-green-light: #E8F0EA;
  --eub-green-wash:  #F3F7F4;

  --eub-accent:      #E8B93B;
  --eub-accent-dark: #C99820;
  --eub-accent-light:#FBF4DE;

  --eub-body:        #111827;
  --eub-muted:       #4B5563;
  --eub-subtle:      #8A94A3;
  --eub-border:      #E3E6EB;
  --eub-white:       #ffffff;
  --eub-page-bg:     #F7F8FA;

  --eub-card-radius: 6px;
  --eub-transition:  .22s cubic-bezier(.4,0,.2,1);
  --eub-max-w:       1200px;
}

/* ─────────────────────────────────────────
   SECTION 1: PAGE HERO BANNER
   ───────────────────────────────────────── */
.eu-blog-hero {
  background: var(--eub-green-dark);
  padding: 50px 24px 48px;
  position: relative;
  overflow: hidden;
}

/* Gold accent bar — left edge */
.eu-blog-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--eub-accent);
}

.eu-blog-hero__inner {
  max-width: var(--eub-max-w);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.eu-blog-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--eub-accent);
  margin-bottom: 10px;
}

.eu-blog-hero__title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 15px 0 !important;
}

.eu-blog-hero__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .65);
  max-width: 1200px;
  line-height: 1.6;
  margin: 0;
}


/* ─────────────────────────────────────────
   MAIN CONTENT WRAPPER
   ───────────────────────────────────────── */
.eu-blog-body {
  max-width: var(--eub-max-w);
  margin: 0 auto;
  padding: 52px 24px 40px;
  background: var(--eub-page-bg);
}

/* Override theme body background for Blog Home */
.blog {
  background: var(--eub-page-bg);
}

/* ─────────────────────────────────────────
   SECTION 2: FEATURED ROW (card + categories)
   ───────────────────────────────────────── */
.eu-blog-featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: stretch;
}

/* — Featured Card — */
.eu-blog-featured {
  display: flex;
  flex-direction: column;
  border-radius: var(--eub-card-radius);
  overflow: hidden;
  background: var(--eub-white);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .09);
  transition: box-shadow var(--eub-transition), transform var(--eub-transition);
}
.eu-blog-featured:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14);
  transform: translateY(-2px);
}

.eu-blog-featured__img {
  position: relative;
  overflow: hidden;
  height: 360px;
  background: var(--eub-green-light);
}
.eu-blog-featured__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eu-blog-featured__bar {
  background: var(--eub-green);
  color: #fff;
  padding: 12px 24px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eu-blog-featured__content {
  /* padding: 44px 44px 40px; */
  padding: 36px 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eu-blog-featured__title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.22;
  color: var(--eub-green-dark);
  margin: 0 0 16px 0 !important;
  letter-spacing: -.01em;
}
.eu-blog-featured__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--eub-transition);
}
.eu-blog-featured__title a:hover {
  color: var(--eub-green);
}

/* — Shared: category label — */
.eu-blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eub-green);
  background: none;
  padding: 0;
  margin-bottom: 18px;
  text-decoration: none;
  transition: color var(--eub-transition);
}
.eu-blog-card-category:hover {
  color: var(--eub-green-mid);
}

/* — Shared: post excerpt — */
.eu-blog-post-excerpt {
  font-size: 15.5px;
  color: var(--eub-muted);
  line-height: 1.72;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eu-blog-featured__content .eu-blog-post-excerpt {
  -webkit-line-clamp: 3;
}

/* — Shared: post meta — */
.eu-blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--eub-subtle);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.eu-blog-post-meta__dot {
  color: var(--eub-border);
}
.eu-blog-post-meta__author {
  font-weight: 600;
  color: var(--eub-muted);
}

/* — Shared: read more link — */
.eu-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eub-green);
  text-decoration: none;
  transition: gap var(--eub-transition), color var(--eub-transition);
}
.eu-blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--eub-transition);
}
.eu-blog-read-more:hover {
  color: var(--eub-green-dark);
  gap: 12px;
}
.eu-blog-read-more:hover svg {
  transform: translateX(3px);
}

/* — Category Aside — */
.eu-blog-cat-aside {
  background: var(--eub-white);
  border-radius: var(--eub-card-radius);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.eu-blog-cat-aside__head {
  background: var(--eub-green);
  color: #fff;
  padding: 16px 22px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eu-blog-cat-aside__list {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 4px 0;
  overflow-y: auto;
}
.eu-blog-cat-aside__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 11px 22px; */
  padding: 14px 22px;
  font-size: 14px;
  color: var(--eub-body);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transition: background var(--eub-transition), color var(--eub-transition), padding var(--eub-transition);
}
.eu-blog-cat-aside__item:last-child {
  border-bottom: none;
}
.eu-blog-cat-aside__item:hover {
  background: var(--eub-green-light);
  color: var(--eub-green);
  padding-left: 26px;
}
.eu-blog-cat-aside__arrow {
  color: var(--eub-border);
  transition: transform var(--eub-transition), color var(--eub-transition);
  flex-shrink: 0;
}
.eu-blog-cat-aside__arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}
.eu-blog-cat-aside__item:hover .eu-blog-cat-aside__arrow {
  color: var(--eub-green);
  transform: translateX(2px);
}

/* ─────────────────────────────────────────
   SECTION 3: LATEST ARTICLES GRID
   ───────────────────────────────────────── */

/* — Section Header — */
.eu-blog-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.eu-blog-section-title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--eub-green-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eu-blog-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--eub-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* — Post Grid — */
.eu-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

/* — Post Card — */
.eu-blog-card {
  background: var(--eub-white);
  border-radius: var(--eub-card-radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
  border: 1px solid var(--eub-border);
  transition: box-shadow var(--eub-transition), transform var(--eub-transition);
}
.eu-blog-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, .11);
  transform: translateY(-3px);
}

.eu-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Card image */
.eu-blog-card__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--eub-green-light);
  flex-shrink: 0;
}
.eu-blog-card__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eu-blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--eub-green) 0%, var(--eub-green-dark) 100%);
}
.eu-blog-card__img-placeholder svg {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, .18);
}

/* Category color stripe */
.eu-blog-card__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
}

/* Card body */
.eu-blog-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.eu-blog-card__category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eub-green);
  margin-bottom: 10px;
}
.eu-blog-card__title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--eub-green-dark);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--eub-transition);
}
.eu-blog-card:hover .eu-blog-card__title {
  color: var(--eub-green);
}
.eu-blog-card__excerpt {
  font-size: 14px;
  color: var(--eub-muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 18px 0;
}

/* Card footer */
.eu-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--eub-border);
  padding-top: 14px;
  margin-top: auto;
}
.eu-blog-card__date {
  font-size: 12px;
  color: var(--eub-subtle);
}
.eu-blog-card__read-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--eub-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.eu-blog-card__read-time svg {
  width: 13px;
  height: 13px;
  color: var(--eub-accent);
}

/* — Entrance animation — */
@keyframes eubFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eub-anim {
  opacity: 0;
}
.eub-anim.visible {
  animation: eubFadeUp .5s cubic-bezier(.4, 0, .2, 1) forwards;
}
.eub-anim:nth-child(2) { animation-delay: .08s; }
.eub-anim:nth-child(3) { animation-delay: .16s; }
.eub-anim:nth-child(4) { animation-delay: .24s; }
.eub-anim:nth-child(5) { animation-delay: .32s; }
.eub-anim:nth-child(6) { animation-delay: .40s; }

/* ─────────────────────────────────────────
   SECTION 4: AWARDS STRIP
   ───────────────────────────────────────── */
.eu-blog-awards {
  margin-bottom: 64px;
}
.eu-blog-awards__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.eu-blog-awards__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--eub-green);
}
.eu-blog-awards__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--eub-accent);
}
.eu-blog-awards__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--eub-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--eub-transition);
  white-space: nowrap;
}
.eu-blog-awards__link svg {
  width: 14px;
  height: 14px;
}
.eu-blog-awards__link:hover {
  gap: 8px;
  color: var(--eub-green-dark);
}

.eu-blog-awards__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* Award chip */
.eu-blog-award-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--eub-white);
  border: 1px solid var(--eub-border);
  border-radius: 10px;
  padding: 20px 18px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
  transition: box-shadow var(--eub-transition), transform var(--eub-transition), border-color var(--eub-transition);
  text-decoration: none;
  text-align: center;
}
.eu-blog-award-chip:hover {
  box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
  transform: none;
  border-color: var(--eub-border);
}
.eu-blog-award-chip img {
  width: 100%;
  max-width: 120px;
  height: 96px;
  object-fit: contain;
  display: block;
}
.eu-blog-award-chip__caption {
  font-size: 12px;
  color: var(--eub-muted);
  line-height: 1.4;
  font-weight: 500;
}
.eu-blog-award-chip__caption span {
  display: block;
  font-size: 11px;
  color: var(--eub-subtle);
  margin-top: 2px;
  font-weight: 400;
}

/* ─────────────────────────────────────────
   SECTION 5: PROMO STRIP
   ───────────────────────────────────────── */
.eu-blog-promo {
  background: var(--eub-green);
  border-radius: var(--eub-card-radius);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.eu-blog-promo__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--eub-accent);
  margin-bottom: 10px;
}
.eu-blog-promo__title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 10px 0;
}
.eu-blog-promo__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}
.eu-blog-promo__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--eub-accent);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--eub-transition), transform var(--eub-transition);
  white-space: nowrap;
}
.eu-blog-promo__btn:hover {
  background: var(--eub-accent-dark);
  transform: translateY(-1px);
  color: #1a1a1a;
}
.eu-blog-promo__btn svg {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────
   SECTION 6: MORE ARTICLES (LIST)
   ───────────────────────────────────────── */
.eu-blog-more {
  margin-bottom: 64px;
}
.eu-blog-list {
  display: flex;
  flex-direction: column;
}
.eu-blog-list__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--eub-border);
  text-decoration: none;
  color: inherit;
  transition: opacity var(--eub-transition);
}
.eu-blog-list__item:first-child {
  border-top: 1px solid var(--eub-border);
}
.eu-blog-list__item:hover {
  opacity: .82;
}

/* List thumbnail */
.eu-blog-list__img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.eu-blog-list__img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eu-blog-list__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--eub-green) 0%, var(--eub-green-dark) 100%);
}
.eu-blog-list__img-placeholder svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, .2);
}

/* List content */
.eu-blog-list__cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--eub-green);
  margin-bottom: 5px;
}
.eu-blog-list__title {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--eub-green-dark);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--eub-transition);
}
.eu-blog-list__item:hover .eu-blog-list__title {
  color: var(--eub-green);
}
.eu-blog-list__meta {
  font-size: 12px;
  color: var(--eub-subtle);
}

/* Load more */
.eu-blog-load-more-wrap {
  text-align: center;
  padding-top: 16px;
}
.eu-blog-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 2px solid var(--eub-green);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--eub-green);
  background: transparent;
  cursor: pointer;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: background var(--eub-transition), color var(--eub-transition), transform var(--eub-transition);
  letter-spacing: .03em;
}
.eu-blog-load-more:focus {
  outline: none;
}
.eu-blog-load-more:hover {
  background: var(--eub-green);
  color: #fff;
  transform: translateY(-1px);
}
.eu-blog-load-more svg {
  width: 16px;
  height: 16px;
}

/* ─────────────────────────────────────────
   SECTION 7: NEWSLETTER CTA
   ───────────────────────────────────────── */
.eu-blog-newsletter {
  background: var(--eub-green-dark);
  border-radius: var(--eub-card-radius);
  margin-top: 48px;
  padding: 36px 48px;
  position: relative;
  overflow: hidden;
}
.eu-blog-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(229, 178, 38, .18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(229, 178, 38, .10), transparent 50%);
  pointer-events: none;
}
.eu-blog-newsletter__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.eu-blog-newsletter__lead {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.eu-blog-newsletter__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--eub-accent);
  color: var(--eub-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eu-blog-newsletter__icon svg {
  width: 28px;
  height: 28px;
}
.eu-blog-newsletter__copy h3 {
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  letter-spacing: -.005em;
}
.eu-blog-newsletter__copy p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
  margin: 0;
}
.eu-blog-newsletter__form {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 380px;
}
.eu-blog-newsletter__form input {
  flex: 1;
  height: 46px !important;
  min-height: 46px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff !important;
  font-size: 14px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  outline: none;
  transition: border-color var(--eub-transition);
  box-sizing: border-box;
}
.eu-blog-newsletter__form input::placeholder {
  color: rgba(255, 255, 255, .4) !important;
}
.eu-blog-newsletter__form input:focus {
  border-color: var(--eub-accent);
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232, 185, 59, .2);
}
.eu-blog-newsletter__btn {
  height: 46px;
  padding: 0 24px;
  background: var(--eub-accent);
  color: var(--eub-green-dark);
  border: none;
  border-radius: 8px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--eub-transition), transform var(--eub-transition);
}
.eu-blog-newsletter__btn:hover {
  background: #f0c84b;
  transform: translateY(-1px);
}

/* — Gravity Form #13 inside newsletter — */
.eu-blog-newsletter #gform_wrapper_13 {
  margin: 0;
  padding: 0;
  min-width: 380px;
}
.eu-blog-newsletter #gform_13 .gform-body {
  margin: 0;
  padding: 0;
}
.eu-blog-newsletter #gform_13 .gform_fields {
  display: flex !important;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  grid-column-gap: 8px;
  padding: 0;
  margin: 0;
}
.eu-blog-newsletter #gform_13 .gfield {
  padding: 0 !important;
  margin: 0 !important;
}
.eu-blog-newsletter #gform_13 .gfield--type-email {
  flex: 1;
}
.eu-blog-newsletter #gform_13 .gfield_label {
  display: none !important;
}
.eu-blog-newsletter #gform_13 input[type="email"] {
  width: 100% !important;
  height: 46px !important;
  min-height: 46px;
  padding: 0 16px !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  outline: none !important;
  transition: border-color var(--eub-transition);
  box-sizing: border-box;
  margin: 0 !important;
}
.eu-blog-newsletter #gform_13 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .4) !important;
}
.eu-blog-newsletter #gform_13 input[type="email"]:focus {
  border-color: var(--eub-accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232, 185, 59, .2) !important;
}
.eu-blog-newsletter #gform_13 input[type="submit"],
.eu-blog-newsletter #gform_13 .gform-button {
  height: 46px !important;
  padding: 0 24px !important;
  background: var(--eub-accent) !important;
  color: var(--eub-green-dark) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--eub-transition), transform var(--eub-transition);
  margin: 0 !important;
  line-height: 46px !important;
}
.eu-blog-newsletter #gform_13 input[type="submit"]:hover,
.eu-blog-newsletter #gform_13 .gform-button:hover {
  background: #f0c84b !important;
  transform: translateY(-1px);
}
.eu-blog-newsletter #gform_13 .gform-footer,
.eu-blog-newsletter #gform_13 .gform_footer {
  display: none !important;
}
/* Validation: hide top error banner */
.eu-blog-newsletter .gform_validation_errors {
  display: none !important;
}
/* Validation: inline message under input */
.eu-blog-newsletter #gform_13 .validation_message {
  color: #fca5a5 !important;
  font-size: 12px;
  margin-top: 6px;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  position: absolute;
  bottom: -20px;
  left: 0;
}
/* Validation: field wrapper needs relative for absolute message */
.eu-blog-newsletter #gform_13 .gfield--type-email {
  position: relative;
}
/* Validation: remove error styling from field wrapper */
.eu-blog-newsletter #gform_13 .gfield_error .ginput_container {
  border: none !important;
  background: none !important;
}
/* Validation: red border on input instead */
.eu-blog-newsletter #gform_13 .gfield_error input[type="email"] {
  border-color: #f87171 !important;
  background: rgba(248, 113, 113, .08) !important;
}
/* Remove focus outline from submit button */
.eu-blog-newsletter #gform_13 input[type="submit"]:focus,
.eu-blog-newsletter #gform_13 .gform-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Confirmation wrapper */
.eu-blog-newsletter .gform_confirmation_wrapper {
  width: 100%;
}
.eu-blog-newsletter .gform_confirmation_message_13 {
  color: #fff !important;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}
/* AJAX spinner */
.eu-blog-newsletter #gform_13 .gform_ajax_spinner,
.eu-blog-newsletter #gform_13 img.gform_ajax_spinner {
  display: none !important;
}
/* Submitting state — dim button */
.eu-blog-newsletter #gform_13.gform_submission_pending input[type="submit"],
.eu-blog-newsletter #gform_13 input[type="submit"][disabled] {
  opacity: .6;
  cursor: wait;
}
/* Remove any Gravity theme overrides on wrapper */
.eu-blog-newsletter #gform_wrapper_13.gform_validation_error {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .eu-blog-awards__track {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .eu-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eu-blog-awards__track {
    grid-template-columns: repeat(3, 1fr);
  }
  .eu-blog-newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .eu-blog-newsletter__lead {
    flex-direction: column;
  }
  .eu-blog-newsletter__copy {
    text-align: center;
  }
  .eu-blog-newsletter__form {
    width: 100%;
    min-width: 0;
    max-width: 480px;
  }
  .eu-blog-newsletter__form input {
    flex: 1;
    width: auto;
  }
  .eu-blog-newsletter #gform_wrapper_13 {
    width: 100%;
    min-width: 0;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .eu-blog-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .eu-blog-featured-row {
    grid-template-columns: 1fr;
  }
  .eu-blog-featured__img {
    height: 240px;
  }
  .eu-blog-featured__content {
    padding: 28px 24px 26px;
  }
  .eu-blog-promo {
    grid-template-columns: 1fr;
  }
  .eu-blog-promo__btn {
    justify-self: start;
  }
  .eu-blog-awards__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .eu-blog-body {
    padding: 32px 16px 64px;
  }
  .eu-blog-featured__content {
    padding: 22px 18px 22px;
  }
  .eu-blog-grid {
    grid-template-columns: 1fr;
  }
  .eu-blog-promo {
    padding: 28px 22px;
  }
}

@media (max-width: 450px) {
  .eu-blog-newsletter__form {
    flex-direction: column;
  }
  .eu-blog-newsletter__form input {
    width: 100%;
    height: 46px !important;
    min-height: 46px;
  }
  .eu-blog-newsletter__btn {
    width: 100%;
  }
  .eu-blog-newsletter #gform_13 .gform_fields {
    flex-direction: column;
  }
  .eu-blog-newsletter #gform_13 input[type="submit"],
  .eu-blog-newsletter #gform_13 .gform-button {
    width: 100%;
  }
}
