/* Page Actualités / Blog */

/* Hero - base partagée avec programmes */
.blog-hero-section .hero-image-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.blog-hero-section .hero-image {
  width: 100%;
  height: 100%;
  border-radius: 0 0 30px 30px;
  background: url(/assets/bg-hero-2-37a90676379278b58077c8f9ceba881ad74cfde3903508a086f241cb6aae82a8.svg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.blog-hero-section .hero-text-overlay {
  text-align: center;
  color: white;
  max-width: 820px;
  padding: 0 20px;
  z-index: 2;
}

.blog-hero-section .hero-decoration {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.blog-hero-section .white-deco-img {
  width: 120px;
  height: auto;
  opacity: 0.9;
}

.blog-page-wrapper {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  position: relative;
  overflow: hidden;
}

.blog-hero-section {
  margin-top: -84px;
}

.blog-hero-section .hero-image-container {
  height: 580px;
}

.blog-hero-section .container,
.blog-page-wrapper .container {
  max-width: calc(100% - 48px);
  width: 100%;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

.blog-hero-section .hero-text-overlay h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 72px;
  margin: 0 0 18px 0;
  color: white;
}

.blog-hero-section .hero-text-overlay p {
  font-size: 16px;
  line-height: 37px;
  color: rgba(255, 255, 255, 0.95);
}

/* Section articles */
.blog-section {
  padding: 50px 0 100px 0;
}

.blog-section .container {
  max-width: calc(100% - 48px);
  width: 100%;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.blog-card-type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-type--news {
  background: #F90;
  color: white;
}

.blog-card-type--article {
  background: rgba(255, 255, 255, 0.95);
  color: #1D252B;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image-placeholder {
  background: linear-gradient(135deg, #EAF4FD 0%, #F7FFF3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-initials {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  opacity: 0.6;
}

.blog-card-content {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 15px;
  line-height: 24px;
  color: #4B5563;
  margin: 0 0 20px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 15px;
  font-weight: 600;
  color: #F90;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.blog-card-link:hover {
  color: #E68500;
  gap: 10px;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: #6B7280;
  font-size: 18px;
}

/* Page détail article */

.article-show {
  padding: 0;
}

/* Wrapper avec fond dégradé */
.article-show-wrapper {
  background: linear-gradient(169deg, #E8F5E1 -1.09%, #EFE3D2 47.74%, #DDE9F5 100.12%);
  padding: 60px 0 80px;
}

.article-show-container {
  position: relative;
  max-width: calc(100% - 48px);
  width: 100%;
  padding: 0 24px;
  margin-left: auto;
  margin-right: auto;
}

.article-suggested .container,
.article-newsletter-container {
  max-width: calc(100% - 48px);
  width: 100%;
  padding: 0 24px;
}

.article-show-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Barre latérale gauche : extraits des autres articles + partage */
.article-left-sidebar {
  flex-shrink: 0;
  width: 320px;
  position: sticky;
  top: 120px;
}

.article-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.article-sidebar-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-sidebar-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.1);
}

.article-sidebar-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-sidebar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-sidebar-image-placeholder {
  background: linear-gradient(135deg, #EAF4FD 0%, #F7FFF3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-sidebar-initials {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  opacity: 0.6;
}

.article-sidebar-content {
  flex: 1;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
}

.article-sidebar-date {
  font-size: 13px;
  color: #6B7280;
  display: block;
  margin-bottom: 10px;
}

.article-sidebar-item-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-sidebar-excerpt {
  font-size: 14px;
  line-height: 22px;
  color: #4B5563;
  margin: 0 0 16px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-sidebar-link {
  font-size: 15px;
  font-weight: 600;
  color: #F90;
}

.article-share-block {
  margin-top: 0;
}

.article-sidebar-list + .article-share-block {
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.article-share-block .article-share-label {
  margin-bottom: 12px;
  display: block;
}

.article-share-block .article-share-icons {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.article-share-sidebar {
  flex-shrink: 0;
  width: 56px;
  position: sticky;
  top: 120px;
}

.article-share-label {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  display: block;
}

.article-share-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  transition: all 0.2s ease;
}

.article-share-link:hover {
  background: #F90;
  border-color: #F90;
  color: white;
}

.article-share-icon {
  filter: brightness(0);
}

.article-share-link img.article-share-icon {
  width: 48px;
  height: 48px;
}

.article-share-link svg.article-share-icon {
  width: 28px;
  height: 28px;
}

.article-share-link:hover .article-share-icon {
  filter: brightness(0) invert(1);
}

.article-share-copy {
  cursor: pointer;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  padding: 0;
  font: inherit;
  appearance: none;
}

.article-share-copy:hover {
  background: #F90;
  border-color: #F90;
}

.article-share-copy-toast {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #065F46;
  background: #D1FAE5;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  visibility: hidden;
}

.article-share-copy-toast.article-share-copy-toast--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.article-share-block {
  position: relative;
}

.article-left-sidebar + .article-show-inner {
  flex: 1;
  min-width: 0;
}

.article-show-inner {
  flex: 1;
  width: 100%;
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: box-shadow 0.3s ease;
}

.article-show-inner:hover {
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.05),
    0 28px 80px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 153, 0, 0.15);
}

.article-cover {
  width: 100%;
  height: 440px;
  overflow: hidden;
  margin-bottom: 0;
  flex-shrink: 0;
}

.article-cover:first-child {
  border-radius: 32px 32px 0 0;
}

.article-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-text {
  padding: 52px 72px 64px;
}

.article-header {
  margin-bottom: 36px;
}

.article-date {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  margin-bottom: 14px;
  display: block;
  letter-spacing: 0.3px;
}

.article-title {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-excerpt {
  font-size: 16px;
  line-height: 28px;
  color: #4B5563;
  margin: 0;
}

.article-body {
  font-size: 16px;
  line-height: 28px;
  color: #374151;
}

.article-body p {
  margin: 0 0 14px 0;
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* Titres de section dans le corps de l'article */
.article-body h2,
.article-body h3,
.article-body h4 {
  font-weight: 700;
  color: #111827;
  margin: 24px 0 10px 0;
  line-height: 1.3;
}

.article-body h2 {
  font-size: 32px;
  margin-top: 32px;
}

.article-body h3,
.article-body .article-body-heading {
  font-size: 26px;
}

.article-body h4 {
  font-size: 22px;
}

.article-body h2:first-child,
.article-body h3:first-child,
.article-body h4:first-child {
  margin-top: 0;
}

/* Chiffres et éléments en gras */
.article-body strong,
.article-body b {
  font-weight: 700;
  color: #111827;
}

.article-back {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 2px solid #F0F4F8;
}

.article-back-link {
  font-size: 15px;
  font-weight: 600;
  color: #F90;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-back-link:hover {
  color: #E68500;
}

/* Section Commentaires */
.article-comments {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid #F0F4F8;
}

.article-comments-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px 0;
}

.article-comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.article-comment {
  padding: 20px 24px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
}

.article-comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-comment-author {
  font-weight: 700;
  color: #111827;
  font-size: 15px;
}

.article-comment-date {
  font-size: 13px;
  color: #6B7280;
}

.article-comment-content {
  font-size: 15px;
  line-height: 24px;
  color: #374151;
}

.article-comment-content p {
  margin: 0 0 8px 0;
}

.article-comment-content p:last-child {
  margin-bottom: 0;
}

.article-comments-empty {
  color: #6B7280;
  font-size: 15px;
  font-style: italic;
  margin: 0 0 28px 0;
}

.article-comments-form {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 32px;
}

.article-comments-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px 0;
}

.article-comment-form .article-comment-errors {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.article-comment-form .article-comment-errors ul {
  margin: 0;
  padding-left: 20px;
  color: #991B1B;
  font-size: 14px;
}

.article-comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.article-comment-form-field {
  margin-bottom: 16px;
}

.article-comment-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.article-comment-form-field input,
.article-comment-form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.article-comment-form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.article-comment-submit {
  padding: 12px 24px;
  background: #F90;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.article-comment-submit:hover {
  background: #E68500;
}

@media (max-width: 768px) {
  .article-comment-form-row {
    grid-template-columns: 1fr;
  }

  .article-comments-form {
    padding: 20px;
  }
  .blog-section .container{
    padding: 0 !important;
    max-width: 100% !important;
  }
  section {
    margin: 0 10px;
    }
    .blog-card-title {
      font-size: 16px !important;
    }
    .blog-card-excerpt {
      font-size: 14px !important;
    }
    .blog-card-date {
      font-size: 12px !important;
    }
    .blog-card-link {
      font-size: 14px !important;
    }
}

/* Section Autres articles */
.article-suggested {
  margin-top: 80px;
  padding: 0 0 60px;
}

.article-suggested-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 36px 0;
  text-align: center;
}

.article-suggested-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.article-suggested-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #E5E7EB;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-suggested-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.article-suggested-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-suggested-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-suggested-placeholder {
  background: linear-gradient(135deg, #EAF4FD 0%, #F7FFF3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-suggested-placeholder span {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  opacity: 0.5;
}

.article-suggested-content {
  padding: 20px 24px 24px;
  flex: 1;
}

.article-suggested-date {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 8px;
  display: block;
}

.article-suggested-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-suggested-excerpt {
  font-size: 14px;
  line-height: 22px;
  color: #4B5563;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-suggested-link {
  font-size: 14px;
  font-weight: 600;
  color: #F90;
}

/* Section Newsletter sur la page article */
.article-newsletter-block {
  margin-top: 60px;
  background: #F8F8F9;
  border-radius: 25px;
  padding: 44px 47px;
}

.article-newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.article-newsletter-left {
  flex: 1;
  max-width: 400px;
}

.article-newsletter-title {
  font-size: 24px;
  font-weight: 700;
  color: #1D252B;
  margin: 0;
  line-height: 42px;
}

.article-newsletter-right {
  flex-shrink: 0;
}

.article-newsletter-form {
  display: flex;
  gap: 24px;
  align-items: center;
}

.article-newsletter-input {
  padding: 15px 38px;
  border: 1px solid #E4ECF6;
  border-radius: 30px;
  font-size: 16px;
  color: #1D252B;
  background: white;
  outline: none;
  transition: all 0.3s ease;
  min-width: 320px;
}

.article-newsletter-input:focus {
  border-color: #F90;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
}

.article-newsletter-input::placeholder {
  color: #5B6878;
}

.article-newsletter-btn {
  background: #F90;
  border: 1px solid #F90;
  border-radius: 30px;
  padding: 14px 62px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.article-newsletter-btn:hover {
  background: #E68500;
  border-color: #E68500;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

/* Toast newsletter */
.newsletter-toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 400px;
}

.newsletter-toast-success {
  background: #D1FAE5;
  border: 1px solid #34D399;
}

.newsletter-toast-error {
  background: #FEE2E2;
  border: 1px solid #F87171;
}

.newsletter-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.newsletter-toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.newsletter-toast-success .newsletter-toast-icon {
  color: #059669;
}

.newsletter-toast-error .newsletter-toast-icon {
  color: #DC2626;
}

.newsletter-toast-message {
  font-size: 14px;
  font-weight: 500;
  color: #1D252B;
}

.newsletter-toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #6B7280;
}

.newsletter-toast-close:hover {
  color: #1D252B;
}

/* Animations */
.blog-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .article-show-container {
    max-width: 100%;
    padding: 10px;
  }
  .article-show-wrapper {
    padding: 35px 0 60px;
  }

  .blog-hero-section {
    margin-top: -60px;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .blog-hero-section .container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .blog-hero-section .hero-image-container {
    height: 450px;
  }

  .blog-hero-section .hero-text-overlay h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .blog-hero-section .hero-text-overlay p {
    font-size: 14px;
    line-height: 1.5;
  }

  .blog-hero-section .white-deco-img {
    width: 80px;
  }

  .blog-hero-section .hero-decoration {
    margin-bottom: 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card {
    min-height: 450px;
  }

  .blog-card-image {
    height: 280px;
  }

  .article-show-inner {
    border-radius: 24px;
  }

  .article-cover {
    height: 280px;
  }

  .article-cover:first-child {
    border-radius: 24px 24px 0 0;
  }

  .article-text {
    padding: 36px 24px 44px;
  }

  .article-title {
    font-size: 18px;
  }

  .article-excerpt {
    font-size: 14px;
    line-height: 26px;
  }

  .article-body {
    font-size: 14px;
    line-height: 26px;
  }
  .article-share-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .article-body h2 { font-size: 26px; }
  .article-body h3,
  .article-body .article-body-heading { font-size: 22px; }
  .article-body h4 { font-size: 19px; }

  .article-show-layout {
    flex-direction: column;
    gap: 28px;
  }

  .article-show-inner {
    order: -1;
  }
  .article-newsletter-right {
    width: 100%;
  }
  .article-left-sidebar {
    position: static;
    width: 100%;
  }

  .article-sidebar-list {
    margin-bottom: 24px;
  }

  .article-newsletter-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .article-newsletter-block {
    margin-top: 40px;
    padding: 30px 30px;
  }

  .article-newsletter-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .article-newsletter-left {
    max-width: 100%;
  }

  .article-newsletter-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .article-newsletter-form {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .article-newsletter-input {
    min-width: 100%;
    width: 100%;
    padding: 15px 24px;
    font-size: 16px;
  }

  .article-newsletter-btn {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .blog-hero-section {
    margin-top: -50px;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .blog-hero-section .container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .blog-hero-section .hero-image-container {
    height: 400px;
  }

  .blog-hero-section .hero-text-overlay h1 {
    font-size: 28px;
  }

  .blog-hero-section .hero-text-overlay p {
    font-size: 13px;
  }

  .blog-hero-section .white-deco-img {
    width: 60px;
  }

  .blog-card {
    min-height: 400px;
  }

  .blog-card-image {
    height: 250px;
  }

  .article-newsletter-container {
    padding: 0 15px;
  }

  .article-newsletter-block {
    padding: 25px 20px;
  }

  .article-newsletter-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .article-newsletter-input {
    padding: 14px 20px;
    font-size: 16px;
  }

  .article-newsletter-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}
