/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  /* Colors */
  --primary-color: #1a5b8a;
  --secondary-color: #ffffff;
  --accent-color: #0a4970;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --background-light: #f8f9fa;
  --background-blue: #1a5b8a;
  --background-teal: #2c7a8c;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 56px;
  --line-height-base: 1.5;
  --line-height-tight: 1.2;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Layout */
  --container-max-width: 1217px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Base Typography */
html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background-color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-color);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
  text-decoration: none;
  font-family: Plus Jakarta Sans;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-white {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: var(--background-light);
  color: var(--accent-color);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--font-size-sm);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

/* Fixed header state when scrolling */
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* Header Top Bar */
.header-top {
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-xs) 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link:hover {
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-contact-item img,
.header-contact-item picture {
  width: 18px;
  height: 18px;
}

.header-contact-divider {
  width: 7px;
  height: 7px;
  background-color: #d9d9d9;
  border-radius: 50%;
}

.header-contact-item a {
  font-size: 14px;
  font-family: Poppins;
  color: #4e5d63;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Header Main */
.header-main {
  background-color: var(--secondary-color);
  padding: var(--spacing-sm) 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Scrolled header state */
.header.scrolled .header-top {
  display: none;
}

.header.scrolled .header-main {
  padding: var(--spacing-xs) 0;
}

.header.scrolled .logo img {
  height: 40px;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 51px;
  margin: 0;
  padding: 0;
}

.nav li {
  position: relative;
}

.nav a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #0d2b37;
}

.nav a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover::after,
.nav a.active::after {
  width: 80%;
}

/* Header CTA Button */
.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  max-width: 250px;
  width: 100%;
  height: 50px;
  opacity: 1;
  gap: 10px;
  border-radius: 12px;
  border-width: 1px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 14px;
  padding-left: 24px;
  border: 1px solid #005678;
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 91, 138, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  gap: 4px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover span {
  background-color: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

/* Cards */
.card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: var(--spacing-lg);
  transition: var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: #f6f6f6;
  padding-top: 64px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  max-width: 383.489501953125px;
}

@media (max-width: 850px) {
  .footer-contact {
    width: 100%;
    max-width: 100%;
  }

  .contact-item {
    width: 100%;
    max-width: 100%;
  }
}

.contact-item-icon {
  width: 24px;
  height: 24px;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  min-height: 70px;
}

.contact-item-heading {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #6f6f6f;
  margin: 0;
  margin-bottom: 4px;
}

.contact-item .contact-item-detail {
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #0d2b37;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-cta {
  background-color: #f6f6f6;
  text-align: center;
  margin-top: 120px;
  padding-top: 117px;
  padding-bottom: 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1250px) {
  .final-cta {
    padding: 40px 16px;
  }
}

@media (max-width: 600) {
  .final-cta {
    margin-top: 60px;
  }
}

.final-cta-container {
  max-width: 1219px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.final-cta-label {
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #005678;
}

.final-cta-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: #0d2b37;
  margin-bottom: 16px;
  width: 100%;
  text-align: center;
}

.final-cta-description {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #0d2b37;
  max-width: 570px;
  width: 100%;
}

.final-cta-button {
  max-width: 305px;
  width: 100%;
  height: 50px;
  opacity: 1;
  gap: 10px;
  border-radius: 12px;
  border-width: 1px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

/* Footer Navigation Styles */
.footer-nav-container {
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .social-links {
    display: none;
  }
}

.social-link {
  width: 24.5px;
  height: 24.5px;
}

.social-link img {
  width: 24.5px;
  height: 24.5px;
  transition: transform 0.3s ease;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 55px;
  border-top: 1px solid var(--border-color);
  font-size: var(--font-size-sm);
  color: var(--text-light);
  padding-bottom: 40px;
}

.footer-legal a {
  color: var(--text-light);
}

@media (max-width: 600px) {
  .footer-legal a,
  .footer-legal-copyright {
    max-width: 257px;
  }
}

/* Video Modal Styles */
.video-modal {
  animation: fadeIn 0.3s ease;
}

.youtube-modal iframe {
  transition: all 0.3s ease;
}

.youtube-modal-content {
  max-width: 100%;
  width: 100%;
  width: 700px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 520px) {
  .youtube-modal iframe {
    width: 90vw !important;
    height: 54vw !important;
    max-width: 450px !important;
    max-height: 270px !important;
  }
}

@media (max-width: 400px) {
  .youtube-modal iframe {
    width: 90vw !important;
    height: 54vw !important;
    max-width: 350px !important;
    max-height: 210px !important;
  }
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.whatsapp-fixed a img,
.whatsapp-fixed a picture {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 0;
}

.whatsapp-fixed a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-fixed img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.hidden {
  display: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 var(--spacing-md);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-top-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .social-links {
    order: 2;
    justify-content: center;
  }

  .header-contact {
    order: 1;
    justify-content: center;
  }

  .header-content {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    margin-top: var(--spacing-sm);
  }

  .nav ul {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 36px;
    --font-size-2xl: 28px;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .header-top {
    display: none;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /*padding: var(--spacing-md) 0;*/
    position: relative;
  }

  .logo {
    order: 1;
    margin-bottom: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
    z-index: 1001;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    order: 3;
    margin: 0;
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Ensure menu works with both direct nav and nested nav structures */
  nav.nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    order: 3;
    margin: 0;
    z-index: 999;
  }

  nav.nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-md) 0;
  }

  .nav li {
    width: 100%;
    text-align: center;
  }

  .nav a {
    display: block;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

/* Mobile-only menu item */
.mobile-only-menu-item {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-menu-item {
    display: block;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-3xl: 28px;
    --font-size-2xl: 24px;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav ul {
    gap: var(--spacing-xs);
  }

  .nav a {
    font-size: var(--font-size-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .social-links {
    gap: var(--spacing-xs);
  }

  .social-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .whatsapp-fixed {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-fixed a {
    width: 60px;
    height: 60px;
  }
}

/* Blog Preview */
.blog-preview {
  margin-top: 120px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1250px) {
  .blog-preview {
    padding: 0 16px;
  }
}

@media (max-width: 1000px) {
  .blog-preview {
    margin-top: 64px;
    flex-direction: column;
  }
}

.blog-preview-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1219px;
  width: 100%;
  gap: 24px;
}

@media (max-width: 1000px) {
  .blog-preview-container {
    flex-direction: column;
  }
}

.blog-preview-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 388px;
  height: 370px;
  padding-bottom: 32px;
}

@media (max-width: 1000px) {
  .blog-preview-section-header {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
  }
}

.blog-preview-label {
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #005678;
}

.blog-preview-view-all-link-icon {
  width: 24px;
  height: 24px;
}

.blog-preview-view-all-link picture {
  width: 24px;
  height: 24px;
}

@media (max-width: 1000px) {
  .blog-preview-label {
    text-align: center;
  }
}

.blog-preview-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 120%;
  letter-spacing: 0%;
  color: #0d2b37;
  margin-top: 16px;
}

@media (max-width: 1000px) {
  .blog-preview-title {
    text-align: center;
  }
}

.blog-preview-view-all-link {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 22px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #005678;
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (max-width: 1000px) {
  .articles-grid {
    width: 100%;
    margin-top: 56px;
  }
}

@media (max-width: 800px) {
  .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.article-card {
  width: 382px;
  height: 370px;
  border-radius: 12px;
  border-width: 1px;
  padding: 24px;
  border: 1px solid #e2e2e2;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1000px) {
  .article-card {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .article-card {
    width: 100%;
  }
}

.article-card-link-container {
  text-decoration: none;
  width: 100%;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.article-preview-image {
  width: 100%;
  height: 167px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 31px;
}

.article-content {
  padding: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.article-preview-title {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #0d2b37;
  margin-top: 31px;
}

.article-preview-link {
  margin-top: 16px;
}
