.elementor-76 .elementor-element.elementor-element-7caf7b3a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:120px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-76 .elementor-element.elementor-element-0ac5860{text-align:center;}.elementor-76 .elementor-element.elementor-element-0ac5860 .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:31px;font-weight:600;color:var( --e-global-color-8a43433 );}.elementor-76 .elementor-element.elementor-element-4ed7caf5{margin:3px 0px calc(var(--kit-widget-spacing, 0px) + 20px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-4ed7caf5 */.wedding-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 20px;
}
.wedding-news-card {
  background: #fff8f5;
  border: 1px solid #f5e1da;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
}
.wedding-news-card:hover {
  transform: translateY(-5px);
}
.wedding-news-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}
.wedding-news-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #b76e79;
}
.wedding-news-card p {
  font-size: 14px;
  color: #555;
}/* End custom CSS */
/* Start custom CSS *//* === Wedding News Section === */
.wedding-news-section {
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
}

.wedding-news-section .news-heading {
  text-align: center;
  font-size: 28px;
  color: #096975;
  margin-bottom: 10px;
}

.wedding-news-section .news-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* === Grid Layout === */
.wedding-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* === Card === */
.wedding-news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 20px;
}

.wedding-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* === Badge (Top of Card) === */
.news-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #eee;
  margin-bottom: 12px;
}

/* === Body Section === */
.news-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

/* Title */
.news-body .news-title {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-body .news-title a {
  color: #096975;
  text-decoration: none;
}

.news-body .news-title a:hover {
  color: #074b52;
  text-decoration: none;
}

/* Excerpt */
.news-excerpt {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Read More Button (Optional) === */
.read-more-btn {
  display: inline-block;
  background: #096975;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 500;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: #074b52;
}/* End custom CSS */