/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
/* Base styling for all team news blocks */
.team-news-block {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 8px;
  background-color: #f9f9f9;
}

/* First Team styling */
.team-news-block.first-team-news {
  border-left: 6px solid #004080; /* Navy blue */
  background-color: #e6f0ff;
}

/* Reserves styling */
.team-news-block.reserves-team-news {
  border-left: 6px solid #006633; /* Forest green */
  background-color: #e8fbe8;
}

/* Under 18s styling */
.team-news-block.u18s-team-news {
  border-left: 6px solid #800000; /* Maroon */
  background-color: #fbeaea;
}

/* Optional: style the title */
.team-news-block h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

/* Optional: style individual posts */
.team-news-block .team-post {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}