@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
  --dark: #161a1d;
  --light-dark: #2e3c54;
  --green: #5cb338;
  --brand: #7aad9e;
}

body {
  font-family: "Nunito Sans", sans-serif !important;
  background-color: ghostwhite;
  color: var(--dark);
  line-height: 1.1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.image_container {
  margin: 20px 0px 15px 0px;
  text-align: center;
}

.image {
  width: 400px;
  border-radius: 10px;
  align-items: center;
}

/* Container spacing */
.section_wrapper {
  padding: 10px 0px 10px 0px;
  color: #1f1f1f;
}

/* Heading 1 - Main Title */
h1 {
  font-size: 39px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-top: 30px;
}

/* Heading 2 - Section Titles */
.section_wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}

.section_wrapper h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section_wrapper h3 strong span {
  font-weight: 700 !important;
}

.section_wrapper h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

/* Paragraphs */
.section_wrapper p {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  color: var(--light-dark) !important;
  line-height: 1.5 !important;
}

.section_wrapper p span {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  color: var(--light-dark) !important;
  line-height: 1.5 !important;
}

/* Unordered List Styling */
.section_wrapper ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
}

/* List Items */
.section_wrapper li {
  margin-bottom: 10px;
  font-size: 18px !important;
}

.section_wrapper ul li span {
  font-size: 18px !important;
  font-family: "Nunito Sans", sans-serif !important;
}

/* Strong elements */
.section_wrapper strong {
  font-weight: 800;
}

/* Links */
.section_wrapper a {
  color: #0077cc;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

.section_wrapper a:hover {
  color: #005799;
  text-decoration: none;
}

/* Tables */
.section_wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  color: #e0e0e0;
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--brand);
}

/* Table Header */
.section_wrapper thead th {
  background-color: #213448;
  color: #ffffff;
  padding: 14px 16px;
  text-align: left;
}

.section_wrapper thead tr td p {
  background-color: var(--light-dark);
  color: #ffffff !important;
  padding: 14px 16px;
  text-align: left;
  margin: 0px !important;
}

.section_wrapper thead tr td p strong {
  color: white;
}

/* Table Body */
.section_wrapper tbody td {
  padding: 14px 16px;
  border: 1px solid var(--brand);
}

.section_wrapper tbody tr td p {
  font-size: 16px;
  color: white !important;
  margin: 0px !important;
  font-weight: 400;
}

.section_wrapper tbody tr td p strong {
  color: white;
}

/* Row Striping */
.section_wrapper tbody tr:nth-child(even) {
  background-color: black;
}
.section_wrapper tbody tr:hover {
  background-color: var(--light-dark);
}

/* Date and Fact Checking CSS */
.date_fact_checking_container {
  color: var(--light-dark);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 15px 0px;
  padding: 0px 0px 15px 0px;
  border-bottom: 1px solid var(--dark);
}

.fact_checking {
  position: relative;
}

.fact_checking p {
  font-size: 16px !important;
  margin-bottom: 0px !important;
  line-height: 1.2 !important;
  cursor: pointer;
}

.fact_checking i {
  color: var(--green);
  margin-right: 5px;
}

.fact {
  background-color: white;
  width: 250px;
  top: 25px;
  right: -65px;
  position: absolute;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: none;
  z-index: 998;
}

@media screen and (max-width: 1290px) {
  .container_mobile {
    padding: 0px 15px;
  }

  .section_wrapper {
    padding: 0px;
  }

  .section_wrapper table {
    display: block;
    overflow-x: auto;
  }
}

@media screen and (max-width: 768px) {
  .image {
    width: 100%;
  }

  .date_fact_checking_container {
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: 29px;
  }

  .section_wrapper h2 {
    font-size: 24px;
  }
}
