.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px;
}
.news-main {
    flex: 1 1 68%;
}
.news-sidebar {
    flex: 1 1 28%;
}
.news-header, .sidebar-header {
    position: relative;
    background-color: #032392;
    border-radius: 5px;
    height: 36px;
    margin-bottom: 10px;
}
.news-header::after, .sidebar-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: url('img/bar_660.png') no-repeat center center;
    background-size: cover;
    border-radius: 5px;
}
.news-header-text, .sidebar-header-text {
    position: relative;
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    z-index: 2;
    display: inline-block;
}
.news-article {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.news-article-thumb img {
    width: 140px;
    height: auto;
    object-fit: cover;
}
.news-article-title {
    font-size: 18px;
    margin: 0;
}
.news-article-excerpt {
    font-size: 14px;
    color: #222;
}
.news-sidebar-box {
    margin-bottom: 20px;
}

.news-sidebar-video-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 5px;
}
.news-sidebar-video-thumb-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-featured-title {
    font-weight: bold;
    font-size: 14px;
    color: #19283a;
    margin-bottom: 12px;
    text-align: center;
}

.news-sidebar-video-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.news-sidebar-video-item img {
    width: 80px;
    height: 45px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.news-sidebar-video-title {
    font-size: 13px;
    font-weight: bold;
    color: #19283a;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 2.8em;
}

.news-sidebar-view-all {
    margin: 10px 0px;
    text-align: center;
}

.news-sidebar-view-all a {
    font-size: 13px;
    color: #002fa7;
    text-decoration: none;
    font-weight: bold;
}

.news-sidebar-view-all a:hover {
    text-decoration: underline;
}

/* ---- Quiz CSS ---- */

/* Main container */
.quiz-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: sans-serif;
}

/* Description and image */
.quiz-description {
  margin-bottom: 20px;
  font-size: 16px;
}

.quiz-image {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 4px;
}

/* Results */
.quiz-results {
  margin-bottom: 30px;
}

.quiz-results h2 {
  margin-top: 0;
  font-size: 24px;
}

.quiz-results p {
  margin: 5px 0;
}

.quiz-question {
  margin-bottom: 25px;
}

.quiz-question strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.quiz-options {
  list-style: none;
  padding-left: 0;
}

.quiz-options li {
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 4px;
}

.quiz-correct {
  color: green;
  font-weight: bold;
}

.quiz-wrong {
  color: red;
}

.quiz-your-answer {
  font-style: italic;
  margin-left: 5px;
}

/* Form styling */
.quiz-form .question-block {
  margin-bottom: 25px;
}

.quiz-form label {
  display: block;
  margin-bottom: 4px;
}

.quiz-form input[type="radio"] {
  margin-right: 8px;
}

.quiz-form .button {
  margin-top: 15px;
}

.quiz-results-summary {
    border: 1px solid #ccc;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    margin: 30px 0 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.quiz-results-summary h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.quiz-results-summary i {
    color: #cc9900;
    margin-right: 8px;
}

.quiz-result-row {
    font-size: 16px;
    margin-bottom: 5px;
}

.quiz-answers-heading {
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 20px;
}

/* -- Roster Section -- */

.roster-filters {
    background-color: #eee;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 8px;
    text-align: center;
}

.roster-filters-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.roster-filters-text a {
    font-weight: normal;
    color: #111;
    text-decoration: none;
    padding: 2px 6px;
}

.roster-filters-text a.active {
    text-decoration: underline;
}

.roster-list-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px;
}

.roster-list-table thead {
  background-color: #032392;
  color: #fff;
  box-shadow: 0px;
}

.roster-list-table thead th {
  background-color: #032392;
  color: #fff;
  font-weight: bold;
  padding: 8px 12px;
  text-align: left;
  box-shadow: 0px;
}

.roster-list-table thead tr:first-child th:first-child {
  border-top-left-radius: 5px;
}

.roster-list-table thead tr:first-child th:last-child {
  border-top-right-radius: 5px;
}

.roster-list-table td {
  padding: 6px 12px;
  color: #111;
}

.roster-list-table td:first-child {
  border-left: none;
  box-shadow: none;
}

.roster-list-table td img {
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.roster-list-table tr:nth-child(odd) td {
  background: #f9f9f9;
}

.roster-list-table tr:nth-child(even) td {
  background: #ececec;
}

.roster-list-table tr:hover td {
  background: #e5ebf8;
}

.roster-list-table {
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  box-shadow: none;
}

.roster-list-table thead {
  box-shadow: none;
  border: none;
}

.roster-list-table thead tr {
  box-shadow: none;
  border: none;
}

.roster-list-table thead th {
  border: none;
  box-shadow: none;
}

.roster-list-table tr {
  box-shadow: none;
  border: none;
}

.roster-list-table {
  border-bottom: none;
}

