@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #14261d;
  background: #f9fdfb;
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1rem, 1vw + 0.6rem, 1.05rem);
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

p {
  margin-block: 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

section {
  position: relative;
  padding-block: clamp(2.5rem, 8vw, 5rem);
}

:root {
  font-size: 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #2ca36b;
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}
.container .nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(249, 253, 251, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(7, 33, 20, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 33, 20, 0.12);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.brand img {
  width: 150px;
  height: auto;
}

.tagline {
  display: none;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: clamp(1rem, 2vw, 2.5rem);
  flex-wrap: wrap;
  flex: 1;
}
.site-nav a {
  font-weight: 500;
  color: #14261d;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current=page] {
  color: #2ca36b;
}
.site-nav .nav-contact {
  display: none;
}
.site-nav .nav-cta {
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  color: #ffffff !important;
}
.site-nav .nav-cta:visited, .site-nav .nav-cta:focus, .site-nav .nav-cta:active {
  color: #ffffff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #14261d;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav ul {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #f9fdfb;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(7, 33, 20, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-nav[aria-expanded=true] ul {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav[aria-expanded=true] .nav-contact {
    display: none;
  }
}
@media (min-width: 900px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .site-nav .nav-contact {
    display: none;
  }
}
.hero {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: radial-gradient(circle at 20% 20%, rgba(44, 163, 107, 0.25), transparent 50%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 45%), linear-gradient(145deg, #0b2f1e, #115033 55%, #2ca36b);
  color: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 5%;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: heroPulse 12s ease-in-out infinite;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

@keyframes heroPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3) translate(40px, -20px);
    opacity: 0.6;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
}
.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero-content h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.hero-content .lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.hero-stats .stat {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.hero-stats .label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
.hero-visual .hero-visual-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 1rem;
  box-shadow: 0 25px 80px rgba(7, 33, 20, 0.25);
  overflow: hidden;
}
.hero-visual .hero-visual-card video,
.hero-visual .hero-visual-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #f5f5f5;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.section.what-we-do {
  background: #f4fbf7;
}
.section.split-section .container, .section.contact-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.newsletter-section {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}
.newsletter-section .section-heading {
  margin-bottom: 1.5rem;
}
.section-heading h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
  color: #0b2f1e;
}
.section-heading p {
  max-width: 720px;
  margin-inline: auto;
  color: #14261d;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #2ca36b;
  margin-bottom: 0.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(7, 33, 20, 0.06);
  border: 1px solid rgba(7, 33, 20, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card h3 {
  margin-top: 0;
  color: #0b2f1e;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(7, 33, 20, 0.15);
}

.text-link {
  color: #2ca36b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}
.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.text-link:hover::after {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 31, 61, 0.2);
}

.btn-primary {
  background: #2ca36b;
  color: #ffffff;
  border-color: #2ca36b;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  color: #ffffff;
  background: rgb(38.5797101449, 142.9202898551, 93.8188405797);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
  background: rgba(31, 124, 135, 0.12);
  color: #2ca36b;
  border-color: transparent;
}
.btn-secondary:hover {
  color: #ffffff;
  background: #2ca36b;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.panel {
  background: #e3f3eb;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid #c7e0d2;
}

.checked-list {
  list-style: none;
  padding: 0;
}
.checked-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.checked-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ca36b;
  font-weight: 700;
}

.integration-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.integration-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(7, 33, 20, 0.12);
}

.approach {
  background: #f4fbf7;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.approach-steps li {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(7, 33, 20, 0.08);
}

.clients {
  background: #ffffff;
}

.case-studies {
  background: #f4fbf7;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.case-grid .card ul {
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}

.case-metrics {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.case-metrics .metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: #58d695;
}
.case-metrics .label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(20, 38, 29, 0.7);
}

.quick-contact {
  background: #ffffff;
}

.quick-form {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quick-form .full-width {
  grid-column: 1/-1;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.logo-grid img {
  width: 100%;
  opacity: 0.9;
  filter: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: none !important;
}

.logo-carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}
.logo-carousel-container::before,
.logo-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.logo-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-carousel {
  width: 100%;
  overflow: hidden;
}
.logo-carousel-track {
  display: flex;
  gap: 3rem;
  flex-wrap: nowrap;
  min-width: max-content;
  animation: scroll-logos 80s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
    transform: translateX(0);
  }
}
.logo-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 180px;
}
.logo-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.logo-carousel-item img:hover {
  opacity: 1;
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-carousel-container:hover .logo-carousel-track {
  animation-play-state: paused;
}


.service-partners {
  background: #ffffff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
}
.partner-logos img {
  max-height: 60px;
  object-fit: contain;
  filter: saturate(0.8);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(7, 33, 20, 0.08);
  background: #ffffff;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
}
.feature-table th,
.feature-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #f4fbf7;
}
.feature-table th {
  background: #f4fbf7;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-list details {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(7, 33, 20, 0.08);
}
.faq-list details summary {
  font-weight: 600;
  cursor: pointer;
}
.faq-list details p {
  margin-top: 0.75rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.resource-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(7, 33, 20, 0.08);
  align-items: center;
}

.cta {
  background: #0b2f1e;
  color: #ffffff;
}
.cta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.cta .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.site-footer {
  background: #14261d;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3rem;
}
.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.site-footer a {
  color: inherit;
}
.site-footer address {
  font-style: normal;
  line-height: 1.8;
}
.site-footer .newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-footer .newsletter-form input {
  flex: 1 0 160px;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.25rem;
}
.site-footer .btn-primary {
  background: #2ca36b;
}

.copyright {
  text-align: center;
  margin: 2rem 0 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-hero {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: #ffffff;
}
.subpage-hero h1 {
  font-family: "Playfair Display", "Georgia", serif;
  color: #0b2f1e;
}
.subpage-hero p {
  max-width: 720px;
}

.service-detail .section-heading {
  text-align: left;
}

.cta-inline {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: #f4fbf7;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.assurance {
  background: #f4fbf7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.values-grid article {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(7, 33, 20, 0.08);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid #2ca36b;
}
.timeline-list li {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.timeline-list li .year {
  font-weight: 700;
  color: #0b2f1e;
}
.timeline-list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2ca36b;
  left: -8px;
  top: 6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-grid img {
  border-radius: 20px;
  margin-bottom: 1rem;
}

.stats-panel {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(7, 33, 20, 0.08);
}
.stats-panel .stat {
  font-size: 2.5rem;
  color: #2ca36b;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.blog-card .blog-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8f0ed;
  margin-bottom: 1rem;
  border-radius: 16px 16px 0 0;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card .blog-meta {
  font-size: 0.9rem;
  color: #7f9588;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.blog-card p {
  margin-bottom: 1rem;
}

.contact-section {
  background: #f4fbf7;
}

.contact-details {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(7, 33, 20, 0.08);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(7, 33, 20, 0.16);
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(7, 33, 20, 0.08);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 12px;
  border: 1px solid #c7e0d2;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
}
.form-group textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-actions .form-note {
  font-size: 0.85rem;
  color: #7f9588;
  margin: 0;
}
.form-status {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #7f9588;
  min-height: 1.2em;
}
.form-status.is-success {
  color: #2ca36b;
}
.form-status.is-error {
  color: #c0392b;
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 124, 135, 0.5);
  border-color: #2ca36b;
}

.has-error {
  border-color: #c0392b !important;
}

.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: #2ca36b;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(7, 33, 20, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}
.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
  }
  .cta .container,
  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .newsletter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
  }
}
.newsletter-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(7, 33, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(7, 33, 20, 0.12);
}
.newsletter-card .newsletter-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.newsletter-card .newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
/* For logo images - show full image with padding */
.newsletter-card .newsletter-image:has(img[src*="logo"]) img,
.newsletter-card .newsletter-image:has(img[alt*="logo" i]) img {
  object-fit: contain;
  padding: 1rem;
  background: #ffffff;
}
.newsletter-card .newsletter-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.newsletter-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #14261d;
  font-weight: 600;
  line-height: 1.4;
}
.newsletter-card p {
  flex: 1;
  margin-bottom: 1.5rem;
  color: #2d3e35;
  line-height: 1.6;
}
.newsletter-card .text-link {
  color: #1f7c87;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}
.newsletter-card .text-link:hover {
  color: #7fc342;
}
.newsletter-card .text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.newsletter-card .text-link:hover::after {
  transform: translateX(4px);
}

.newsletter-full-html {
  /* Display as regular card, not full width */
}
.newsletter-full-html .newsletter-html-content {
  padding: 2rem;
  max-width: 100%;
}
.newsletter-full-html .newsletter-html-content img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 1.5rem 0;
  border-radius: 8px;
  visibility: visible !important;
  opacity: 1 !important;
}
.newsletter-full-html .newsletter-html-content h1 {
  color: #14261d;
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}
.newsletter-full-html .newsletter-html-content h2 {
  color: #14261d;
  font-family: "Crimson Text", serif;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.newsletter-full-html .newsletter-html-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #2d3e35;
  font-size: 1rem;
}

.blog-card .blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8f0ed;
  margin-bottom: 1rem;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
/* For logo images - show full image with padding */
.blog-card .blog-image:has(img[src*="logo"]) img,
.blog-card .blog-image:has(img[alt*="logo" i]) img {
  object-fit: contain;
  padding: 1rem;
  background: #ffffff;
}

.newsletter-full-article {
  max-width: 800px;
  margin: 0 auto;
}
.newsletter-full-article .newsletter-full-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(7, 33, 20, 0.08);
}
.newsletter-full-article .newsletter-full-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 2rem;
}
.newsletter-full-article .newsletter-full-content h1,
.newsletter-full-article .newsletter-full-content h2,
.newsletter-full-article .newsletter-full-content h3 {
  color: #14261d;
  font-family: "Crimson Text", serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.newsletter-full-article .newsletter-full-content .newsletter-date {
  color: #1f7c87;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.newsletter-full-article .newsletter-full-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #2d3e35;
}

/*# sourceMappingURL=main.css.map */
