/*
 Theme Name:   Astra Child
 Theme URI:    https://yourwebsite.com/
 Description:  Astra Child Theme for LeadBeyond
 Author:       Your Name
 Author URI:   https://yourwebsite.com/
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/

/*
 ==========================================================================
 Add all custom CSS styles below this line
 ==========================================================================
*/
/* Custom Styles for WP RSS Aggregator Feed */

/* Creates a "card" look for each feed item */
.wprss-feed-item {
  border: 1px solid #e0e0e0; /* Light grey border */
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px; /* Rounded corners */
  background-color: #ffffff; /* White background */
}

/* Styles the title of each news item */
.wprss-feed-item-title a {
  color: #1a0dab;
  font-weight: bold;
  text-decoration: none;
}

/* Changes title color on hover */
.wprss-feed-item-title a:hover {
  color: #333;
  text-decoration: underline;
}

/* Styles the small text (Source and Date) */
.wprss-feed-item-meta {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

/*
 ==========================================================================
 Styles for the AI News Ticker Animation
 ==========================================================================
*/

/* This is the container with the ID we just added */
#ai-news-ticker {
  height: 300px;  /* <-- Set the height of your ticker window. Adjust as needed. */
  overflow: hidden; /* <-- This is crucial. It hides the items outside the window. */
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

/* We remove the margin from the list inside the ticker */
#ai-news-ticker ul.wprss-feed-list {
  margin: 0;
  padding: 0;
}

/* Remove the bullet points */
#ai-news-ticker ul.wprss-feed-list li.wprss-feed-item {
  list-style: none !important;
  border: none;
  padding: 8px 0;
  margin: 0;
}