.elementor-1287 .elementor-element.elementor-element-aaa3e7f{--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;}/* Start custom CSS for html, class: .elementor-element-0ca7cfb *//* --- Modern News Feed Widget Styles --- */

/* The main container/card */
.news-feed-widget {
  background-color: #ffffff; /* A clean white background */
  border: 1px solid #e0e0e0; /* A subtle border */
  border-radius: 12px;       /* Soft, modern rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* A gentle shadow to lift it off the page */
  padding: 24px;
  max-width: 1000px; /* Optional: Constrain width on very large screens */
  margin: 2rem auto; /* Centers the widget on the page */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden; /* Ensures nothing spills out of the rounded corners */
}

/* The header containing the title and button */
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allows title and button to stack on small screens */
  gap: 16px; /* Adds space between title and button when they wrap */
}

/* The main title of the widget */
.widget-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  color: #2c3e50; /* A dark, professional blue-gray */
  margin: 0;
}

/* The "View All" call-to-action button */
.widget-cta-button {
  display: inline-block;
  background-color: #3498db; /* A friendly, accessible blue */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease;
}

.widget-cta-button:hover,
.widget-cta-button:focus {
  background-color: #2980b9; /* A slightly darker shade on hover */
  transform: translateY(-2px); /* A subtle lift effect */
  color: #ffffff;
  text-decoration: none;
}

/* The iframe itself */
.widget-body .fw-iframe {
  display: block; /* Removes any bottom spacing */
  width: 100%;
  border: none; /* Override default iframe border */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  .news-feed-widget {
    padding: 16px;
    border-radius: 8px;
  }

  .widget-header {
    /* On mobile, stack the title on top of the button for better readability */
    flex-direction: column;
    align-items: flex-start;
  }
  
  .widget-title {
    font-size: 1.25rem; /* 20px */
  }

  .widget-cta-button {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */