@charset "UTF-8";
img.avatar {
  margin-right: 0.5rem;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid white;
  border-radius: 999px;
  background-color: inherit; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 0px; }

header {
  height: auto;
  background-color: var(--bl-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--bl-black);
  padding: 1rem 2rem; }
  header .nav-item {
    display: flex;
    align-items: center;
    margin-right: 1rem; }
  header .nav-divider-vr {
    border-left: 1px solid var(--bl-black);
    width: 1px;
    margin: 0 1rem; }
  header .nav-item .nav-btn,
  header .navbar-toggler {
    color: var(--bl-black);
    background-color: transparent;
    padding: 1rem 1.25rem;
    border: 1px solid var(--bl-black);
    border-radius: 0px;
    font-size: 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  header #main-menu.navbar-nav {
    flex-direction: row; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item {
    padding: 0.5rem .75rem; }
  header #main-menu.navbar-nav .nav-item,
  header #main-menu.navbar-nav .nav-item a,
  header #main-menu-mobile.navbar-nav .nav-item,
  header #main-menu-mobile.navbar-nav .nav-item a {
    color: var(--bl-text-dark);
    font-size: 1.5rem;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s; }
  header #main-menu.navbar-nav .nav-item:hover,
  header #main-menu-mobile.navbar-nav .nav-item:hover {
    color: var(--bl-secondary);
    border-color: var(--bl-secondary); }
  header #main-menu.navbar-nav .nav-item:hover a,
  header #main-menu-mobile.navbar-nav .nav-item:hover a {
    color: var(--bl-secondary); }
  header #main-menu.navbar-nav .nav-item:has(.nav-link-a.active),
  header #main-menu-mobile.navbar-nav .nav-item:has(.nav-link-a.active) {
    color: var(--bl-secondary);
    border-color: var(--bl-secondary);
    pointer-events: none; }

[data-bs-theme="dark"] header {
  background-color: #210a07;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--bl-white); }
  [data-bs-theme="dark"] header .nav-divider-vr {
    border-left: 1px solid var(--bl-white); }
  [data-bs-theme="dark"] header .nav-item .nav-btn,
  [data-bs-theme="dark"] header .navbar-toggler {
    color: var(--bl-white);
    border: 1px solid var(--bl-white); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item,
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item a,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item a {
    color: var(--bl-text-light); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item:hover,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item:hover {
    color: var(--bl-secondary);
    border-color: var(--bl-secondary); }
  [data-bs-theme="dark"] header #main-menu.navbar-nav .nav-item:hover a,
  [data-bs-theme="dark"] header #main-menu-mobile.navbar-nav .nav-item:hover a {
    color: var(--bl-secondary); }

footer {
  margin-top: auto;
  background-color: var(--bl-brand-1);
  color: var(--bl-white);
  border-top: 1px solid #82261c; }
  footer a {
    color: var(--bl-white);
    text-decoration: none;
    transition: color 0.3s; }
    footer a:hover {
      text-decoration: none;
      color: var(--bl-brand-2); }
  footer .footer-main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem; }
    footer .footer-main-nav .nav-link {
      font-size: 2rem;
      font-weight: bold;
      border-bottom: 3px solid transparent;
      transition: all 0.3s; }
    footer .footer-main-nav .nav-link:hover {
      border-color: var(--bl-white); }
  footer .footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.75rem; }
    footer .footer-menu .footer-menu-item {
      flex: 1;
      margin-right: 1rem; }
      footer .footer-menu .footer-menu-item:last-child {
        margin-right: 0; }
      footer .footer-menu .footer-menu-item a {
        display: block;
        padding: 0.5rem 0;
        font-size: 1.2rem; }
  footer .social-buttons {
    display: flex;
    flex-direction: column;
    font-size: 2rem; }
    footer .social-buttons li {
      margin-bottom: 0.5rem; }
    footer .social-buttons a {
      display: flex;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 0px;
      background-color: #b5594f;
      color: var(--bl-white);
      transition: background-color 0.3s, color 0.3s; }
      footer .social-buttons a:hover {
        background-color: #82261c;
        color: var(--bl-white); }
      footer .social-buttons a .bi {
        margin-right: 1rem; }
  footer #footer-main {
    padding: 6rem 1rem 4rem 1rem; }
  footer .copywrite {
    background-color: var(--bl-black);
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center; }

[data-bs-theme="dark"] footer {
  background-color: #212529; }
  [data-bs-theme="dark"] footer .social-buttons a {
    background-color: #f8f9fa;
    color: #212529; }
    [data-bs-theme="dark"] footer .social-buttons a:hover {
      background-color: #fdf8f2; }

@media (max-width: 767.98px) {
  footer .footer-main-nav {
    flex-direction: column;
    align-items: center; }
  footer #footer-main {
    text-align: center;
    padding: 2rem 1rem 2rem 1rem; }
    footer #footer-main .footer-logo img {
      width: 150px;
      height: auto; } }

/* LOADER *********************/
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 2rem auto; }

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: var(--bl-primary);
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; }

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1); } }

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1); } }

.or-pull-up {
  text-align: center;
  margin-top: -2.3rem;
  font-size: 2rem; }

.providers-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem; }
  .providers-list .provider-link {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; }
    .providers-list .provider-link.facebook {
      display: flex;
      background-color: #1877f2;
      color: #ffffff;
      border-radius: 3px;
      justify-content: space-around;
      flex-wrap: nowrap;
      flex-direction: row;
      font-size: 1.3rem;
      font-weight: bold; }
      .providers-list .provider-link.facebook span {
        width: 100%;
        text-align: center;
        margin-left: 0.5rem; }
      .providers-list .provider-link.facebook i {
        font-size: 2.2rem;
        color: #ffffff;
        margin-left: 0.3rem; }

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  min-width: min-content; }

.gsi-material-button:hover {
  text-decoration: none; }

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px; }

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%; }

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top; }

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0; }

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f; }

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%; }

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%; }

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%; }

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15); }

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%; }

.period-text {
  font-size: 1.8rem;
  display: block; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 20px; }
  .social-links .social-button {
    display: flex;
    align-items: center;
    height: 60px;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    padding: 1rem 3rem 1rem 1rem;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease; }
  .social-links .social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none; }
  .social-links .button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; }
  .social-links .button-icon i {
    color: #fff;
    font-size: 24px; }
  .social-links .button-text {
    display: flex;
    flex-direction: column;
    text-align: left; }
  .social-links .text-top {
    font-size: 14px;
    line-height: 1; }
  .social-links .text-bottom {
    font-size: 18px;
    font-weight: bold; }

.youtube {
  background-color: #ff0000; }

.spotify {
  background-color: #1db954; }

.facebook {
  background-color: #1877f2; }

.instagram {
  background-color: #c32aa3; }

.latest-posts .post-card-hr {
  position: relative;
  display: flex;
  align-items: start;
  margin-bottom: 2rem; }
  .latest-posts .post-card-hr .post-card-image {
    flex: 1;
    margin-right: 1.5rem; }
    .latest-posts .post-card-hr .post-card-image img {
      border-radius: 0px; }
  .latest-posts .post-card-hr .post-card-body {
    flex: 2;
    display: flex;
    flex-direction: column; }
    .latest-posts .post-card-hr .post-card-body .post-card-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 0.5rem; }
    .latest-posts .post-card-hr .post-card-body .post-card-meta {
      font-size: 1.4rem;
      color: var(--bl-gray-dark);
      margin-bottom: 0.5rem; }

.latest-posts .post-card-hr:last-child {
  margin-bottom: 0; }

@media (max-width: 767px) {
  .latest-posts {
    margin-top: 2rem; } }

[data-bs-theme="dark"] .latest-posts .post-card-hr .post-card-body .post-card-meta {
  color: var(--bl-gray-light); }

#oped-section {
  padding: 2rem 0;
  background-color: var(--bl-white); }
  #oped-section .first-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2rem; }
    #oped-section .first-item .content-thumbnail {
      flex: 1;
      margin-right: 2rem; }
    #oped-section .first-item .content-details {
      flex: 2; }
    #oped-section .first-item img {
      width: 100%;
      height: auto;
      border-radius: 0px; }
  #oped-section .content-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem; }
    #oped-section .content-item .content-thumbnail {
      flex: 1;
      margin-right: 1rem; }
    #oped-section .content-item .content-details {
      flex: 2; }
    #oped-section .content-item img {
      width: 100%;
      height: auto;
      border-radius: 0px; }
    #oped-section .content-item .content-authors a {
      color: var(--bl-text-dark);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s; }
      #oped-section .content-item .content-authors a:hover {
        color: var(--bl-secondary);
        text-decoration: underline; }

@media (max-width: 767px) {
  #oped-section .first-item {
    flex-direction: column;
    align-items: flex-start; }
    #oped-section .first-item .content-thumbnail {
      margin-bottom: 1rem;
      width: 100%; }
    #oped-section .first-item .content-details {
      width: 100%; } }

[data-bs-theme="dark"] #oped-section {
  background-color: #343a40; }
  [data-bs-theme="dark"] #oped-section .content-details a {
    color: var(--bl-white); }

.invisible-link {
  color: var(--bl-body-color);
  text-decoration: none; }
  .invisible-link:hover {
    text-decoration: underline; }

.static-page-title-section {
  background-color: #f5dabf; }

h1.static-page-title {
  font-size: 6rem;
  font-weight: bold;
  margin: 2rem 0 0.5rem 0; }

p.static-page-date {
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 1rem; }

article.static-page,
article.op-ed-page {
  padding: 2rem;
  background-color: #fff;
  box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.2); }
  article.static-page h2,
  article.op-ed-page h2 {
    font-size: 5rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h3,
  article.op-ed-page h3 {
    font-size: 4rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h4,
  article.op-ed-page h4 {
    font-size: 3rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h5,
  article.op-ed-page h5 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page h6,
  article.op-ed-page h6 {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem 0; }
  article.static-page p,
  article.op-ed-page p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem; }
  article.static-page ul, article.static-page ol,
  article.op-ed-page ul,
  article.op-ed-page ol {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem; }
    article.static-page ul li, article.static-page ol li,
    article.op-ed-page ul li,
    article.op-ed-page ol li {
      margin-bottom: 0.5rem; }
    article.static-page ul li::marker, article.static-page ol li::marker,
    article.op-ed-page ul li::marker,
    article.op-ed-page ol li::marker {
      margin-right: 1.5rem;
      color: #a33023;
      font-weight: bold; }
  article.static-page ol,
  article.op-ed-page ol {
    padding-left: 3.5rem;
    list-style-type: decimal; }
  article.static-page ul,
  article.op-ed-page ul {
    list-style-type: none;
    padding-left: 1.5rem; }
    article.static-page ul li::before,
    article.op-ed-page ul li::before {
      content: "•";
      color: #a33023;
      font-size: 2.5rem;
      font-weight: bold;
      margin-right: 1.5rem;
      line-height: 0; }
  article.static-page .figure-container,
  article.op-ed-page .figure-container {
    padding: 0 3rem; }
  article.static-page figure,
  article.op-ed-page figure {
    width: 100%;
    margin: 2.5rem 0;
    text-align: center;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    article.static-page figure img,
    article.op-ed-page figure img {
      width: 100%;
      height: auto;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
    article.static-page figure figcaption,
    article.op-ed-page figure figcaption {
      text-align: right;
      font-size: 1.4rem;
      padding: 0.5rem 1rem;
      background-color: #000;
      color: #e9ecef;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px; }
  article.static-page .image-text-block,
  article.op-ed-page .image-text-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    align-items: center; }
    article.static-page .image-text-block .image-container,
    article.op-ed-page .image-text-block .image-container {
      flex: 0 0 calc(60% + 2rem);
      max-width: 100%;
      margin-bottom: 1rem;
      margin-left: -10rem;
      margin-right: 3rem;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); }
      article.static-page .image-text-block .image-container img,
      article.op-ed-page .image-text-block .image-container img {
        width: 100%;
        height: auto;
        border-radius: 0px; }
    article.static-page .image-text-block .image-caption,
    article.op-ed-page .image-text-block .image-caption {
      background-color: #000;
      font-size: 1.4rem;
      color: #dee2e6;
      text-align: center;
      margin-top: 0rem;
      margin-bottom: 0; }
    article.static-page .image-text-block .text-container,
    article.op-ed-page .image-text-block .text-container {
      flex: 1;
      font-size: 1.8rem;
      line-height: 1.8; }
      article.static-page .image-text-block .text-container p,
      article.op-ed-page .image-text-block .text-container p {
        padding-top: 1rem;
        margin-bottom: 1rem; }
  article.static-page .image-right .image-container,
  article.op-ed-page .image-right .image-container {
    order: 2;
    margin-left: 3rem;
    margin-right: -10rem; }
  article.static-page .image-right .text-container,
  article.op-ed-page .image-right .text-container {
    order: 1; }
  article.static-page .pull-text,
  article.op-ed-page .pull-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: bold; }
  article.static-page blockquote,
  article.op-ed-page blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 5px solid #a33023; }
    article.static-page blockquote p,
    article.op-ed-page blockquote p {
      font-size: 2rem; }
    article.static-page blockquote p::before,
    article.op-ed-page blockquote p::before {
      content: "„";
      font-size: 3rem;
      line-height: 0;
      color: #a33023;
      margin-right: 0.5rem; }
    article.static-page blockquote p::after,
    article.op-ed-page blockquote p::after {
      content: "“";
      font-size: 3rem;
      line-height: 0;
      color: #a33023;
      margin-left: 0.5rem; }
    article.static-page blockquote cite,
    article.op-ed-page blockquote cite {
      font-size: 1.8rem;
      font-style: italic;
      font-weight: bold; }
    article.static-page blockquote cite::before,
    article.op-ed-page blockquote cite::before {
      content: "- ";
      color: #a33023; }
  article.static-page .yt-embed,
  article.op-ed-page .yt-embed {
    margin-bottom: 2.5rem; }
  article.static-page .gallery,
  article.op-ed-page .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    article.static-page .gallery .gallery-image,
    article.op-ed-page .gallery .gallery-image {
      flex: 0 0 calc(33.333% - 1rem);
      max-width: calc(33.333% - 1rem);
      margin-bottom: 1rem; }
      article.static-page .gallery .gallery-image img,
      article.op-ed-page .gallery .gallery-image img {
        width: 100%;
        height: auto;
        border-radius: 0px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
  article.static-page .references,
  article.op-ed-page .references {
    margin-bottom: 2.5rem; }
    article.static-page .references .ref-item h6,
    article.op-ed-page .references .ref-item h6 {
      margin: 0;
      margin-left: .5rem;
      font-size: 1.6rem;
      font-weight: bold;
      display: inline-block; }
    article.static-page .references .ref-item p,
    article.op-ed-page .references .ref-item p {
      display: inline-block;
      margin: 0;
      font-size: 1.6rem; }
    article.static-page .references .ref-item::before,
    article.op-ed-page .references .ref-item::before {
      content: "*  ";
      color: #a33023; }

.lightbox .carousel-control {
  position: absolute;
  top: 75%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--bl-white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease; }
  .lightbox .carousel-control:hover {
    opacity: 1; }

@media (max-width: 767px) {
  h1.static-page-title {
    font-size: 4rem; }
  article.static-page h2,
  article.op-ed-page h2 {
    font-size: 3.5rem; }
  article.static-page h3,
  article.op-ed-page h3 {
    font-size: 3rem; }
  article.static-page h4,
  article.op-ed-page h4 {
    font-size: 2.5rem; }
  article.static-page h5,
  article.op-ed-page h5 {
    font-size: 2rem; }
  article.static-page h6,
  article.op-ed-page h6 {
    font-size: 1.8rem; }
  article.static-page p,
  article.op-ed-page p {
    font-size: 1.8rem; }
  article.static-page ul, article.static-page ol,
  article.op-ed-page ul,
  article.op-ed-page ol {
    font-size: 1.8rem; }
  article.static-page .image-text-block,
  article.op-ed-page .image-text-block {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 2rem; }
    article.static-page .image-text-block .image-container,
    article.op-ed-page .image-text-block .image-container {
      flex: 0 0 100%;
      max-width: 100%;
      margin: 0;
      order: 1; }
  article.static-page .image-right .image-container,
  article.op-ed-page .image-right .image-container {
    order: 1; }
  article.static-page .text-container,
  article.op-ed-page .text-container {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 0; } }

[data-bs-theme="dark"] .static-page-title-section {
  background-color: #000; }

[data-bs-theme="dark"] article.static-page,
[data-bs-theme="dark"] article.op-ed-page {
  background-color: #343a40;
  box-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5); }
  [data-bs-theme="dark"] article.static-page ol li::marker,
  [data-bs-theme="dark"] article.op-ed-page ol li::marker {
    color: #f5dabf; }
  [data-bs-theme="dark"] article.static-page ul li::before,
  [data-bs-theme="dark"] article.op-ed-page ul li::before {
    color: #f5dabf; }
  [data-bs-theme="dark"] article.static-page figure figcaption,
  [data-bs-theme="dark"] article.op-ed-page figure figcaption {
    background-color: #000;
    color: #e9ecef; }
  [data-bs-theme="dark"] article.static-page .image-text-block .image-caption,
  [data-bs-theme="dark"] article.op-ed-page .image-text-block .image-caption {
    color: #e9ecef; }
  [data-bs-theme="dark"] article.static-page blockquote,
  [data-bs-theme="dark"] article.op-ed-page blockquote {
    background-color: #212529; }

[data-bs-theme="dark"] .lightbox .carousel-control {
  background-color: transparent !important;
  color: #fff; }

.oped-featured-wrapper {
  background-color: #f5dabf; }

.oped-featured {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0 1rem 5rem 1rem; }
  .oped-featured .content-thumbnail {
    margin-right: 3rem;
    width: 60%; }
    .oped-featured .content-thumbnail img {
      width: 100%;
      height: auto;
      border-radius: 0px;
      box-shadow: 8px 8px 0px #000; }
  .oped-featured .content-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center; }

[data-bs-theme="dark"] .oped-featured-wrapper {
  background-color: #000; }

[data-bs-theme="dark"] .oped-featured .content-thumbnail img {
  box-shadow: 8px 8px 0px #495057; }

@media (max-width: 767.98px) {
  .oped-featured {
    flex-direction: column; }
    .oped-featured .content-thumbnail {
      width: 100%;
      margin-right: 0;
      margin-bottom: 1rem; }
    .oped-featured .content-thumbnail img {
      width: 100%;
      height: auto;
      border-radius: 0px; }
    .oped-featured .content-details {
      width: 100%; } }

.columns-design {
  padding: 3rem 1rem; }
  .columns-design .content-thumbnail {
    margin-bottom: 1rem; }
    .columns-design .content-thumbnail img {
      object-fit: cover;
      border-radius: 0px; }

.shorts-wrapper {
  background-color: #000;
  color: #fff; }
  .shorts-wrapper .content-item {
    color: #fff; }
    .shorts-wrapper .content-item a {
      color: #fff;
      text-decoration: none; }

.hero-section {
  position: relative;
  height: 500px;
  overflow: hidden; }
  .hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  .hero-section .container {
    position: relative; }
  .hero-section .hero-text {
    width: 40%;
    max-width: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    color: #fff;
    z-index: 1; }
    .hero-section .hero-text h1 {
      font-size: 6rem;
      font-weight: bold; }
    .hero-section .hero-text p {
      font-size: 3rem;
      margin-top: 1rem; }
  @media (max-width: 767px) {
    .hero-section {
      height: 20vh; }
      .hero-section .hero-text {
        width: 100%;
        max-width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        text-align: center; }
        .hero-section .hero-text h1 {
          font-size: 4rem; }
        .hero-section .hero-text p {
          font-size: 2rem; } }
  .hero-section [data-bs-theme="dark"] .hero-overlay {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%), var(--bg-image); }
  @media (max-width: 767px) {
    .hero-section [data-bs-theme="dark"] .hero-text {
      color: #F5F5F5; } }
.police-tape-wrapper {
  position: relative;
  width: 100%;
  min-height: 22rem;
  overflow: hidden;
  bottom: 9rem; }

.police-tape {
  background-color: #a33023;
  overflow: hidden;
  position: absolute;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 100px auto;
  width: calc(100% + 2rem);
  left: -1rem; }
  .police-tape.top {
    height: 8rem;
    bottom: 6rem;
    /* Offset higher to cross with bottom */
    transform: rotate(-3deg);
    /* Reduced angle for less overhang */
    transform-origin: center center; }
  .police-tape.bottom {
    height: 10rem;
    bottom: 0;
    transform: rotate(3deg);
    transform-origin: right;
    background-color: #000; }

@media (max-width: 767.98px) {
  .police-tape-wrapper {
    margin: 1rem 0;
    min-height: 15rem;
    bottom: 4rem; }
  .police-tape.top, .police-tape.bottom {
    bottom: 2rem; }
  .dictionary-entry {
    margin-bottom: 4rem; } }

.about-page .value-cards .card {
  background-color: transparent;
  border: 1px solid #a33023;
  border-radius: 0px;
  box-shadow: none; }
  .about-page .value-cards .card h5 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem; }
  .about-page .value-cards .card p.lead {
    text-align: left;
    font-size: 1.6rem;
    color: #495057; }

.bg-pull {
  background-color: #a33023; }

.numbers-row {
  margin: 2rem 0; }
  .numbers-row .number-counter-wrapper {
    color: #fff; }
    .numbers-row .number-counter-wrapper h2 .number-counter {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 0.5rem; }
    .numbers-row .number-counter-wrapper p.number-counter-label {
      font-size: 2rem;
      color: #e9ecef; }
  @media (max-width: 767.98px) {
    .numbers-row {
      margin: 0; }
      .numbers-row h2 .number-counter {
        font-size: 8rem; } }
[data-bs-theme="dark"] .bg-pull {
  background-color: #210a07; }

.support-section {
  --text-width: 70%;
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: var(--bl-gutter-y) var(--bl-gutter-x); }
  @media (max-width: 767.98px) {
    .support-section {
      min-height: 40vh;
      --text-width: 90%; } }
  .support-section .text-container {
    width: var(--text-width);
    max-width: 100%;
    padding: 5rem 2rem;
    border-radius: 0px; }
    .support-section .text-container.left {
      margin-right: auto;
      text-align: left; }
    .support-section .text-container.right {
      margin-left: auto;
      text-align: right; }
    .support-section .text-container h2 {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 1.5rem; }
    .support-section .text-container p {
      margin-bottom: 1rem; }
    .support-section .text-container .d-flex {
      margin-top: 1.5rem; }
      .support-section .text-container .d-flex a {
        color: inherit;
        transition: color 0.3s ease; }
        .support-section .text-container .d-flex a:hover {
          color: #f5dabf; }
    @media (max-width: 767.98px) {
      .support-section .text-container {
        width: 100%;
        padding: 5rem 1rem; } }
.shorts-watch-wrapper {
  background-color: #000;
  color: #fff;
  height: 100%; }
  .shorts-watch-wrapper .short-page-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    text-align: left;
    color: #fff; }
  .shorts-watch-wrapper .shorts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem; }
    .shorts-watch-wrapper .shorts-container iframe {
      aspect-ratio: 9 / 16;
      width: 45%;
      height: 100%;
      border: none;
      border-radius: 0px; }
    .shorts-watch-wrapper .shorts-container .shorts-controls {
      display: flex;
      flex-direction: row;
      justify-content: center;
      margin-top: 1rem; }
      .shorts-watch-wrapper .shorts-container .shorts-controls button {
        background-color: transparent;
        border: none;
        color: #fff;
        font-size: 2rem;
        margin: 0 1rem;
        cursor: pointer;
        transition: color 0.3s ease; }
        .shorts-watch-wrapper .shorts-container .shorts-controls button:hover {
          color: #a33023; }
      .shorts-watch-wrapper .shorts-container .shorts-controls.right {
        flex-direction: column;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%); }
  @media (max-width: 767.98px) {
    .shorts-watch-wrapper .shorts-container iframe {
      width: 100%;
      height: 100%; }
    .shorts-watch-wrapper .shorts-container .shorts-controls.right {
      flex-direction: row;
      position: relative;
      right: 0;
      top: 0;
      transform: translateY(-50%); }
    .shorts-watch-wrapper .short-page-title {
      font-size: 2.5rem; } }
.content-carousel {
  position: relative;
  overflow: hidden; }

.content-carousel.has-overflow::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(to right, transparent, rgba(var(--bl-body-bg-rgb), var(--bl-bg-opacity)));
  pointer-events: none;
  z-index: 5;
  opacity: var(--gradient-opacity, 1); }

.dark-background .content-carousel.has-overflow::after {
  background: linear-gradient(to right, transparent, #000); }

.carousel-control {
  padding: 5px 10px;
  border-radius: 50%;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--bl-white);
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }

.content-carousel:hover .carousel-control {
  opacity: 1; }

.left {
  left: 5px; }

.right {
  right: 5px; }

.carousel-items {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.carousel-items::-webkit-scrollbar {
  display: none; }

.carousel-items .content-item {
  width: 300px;
  flex: 0 0 300px;
  margin-right: 15px;
  scroll-snap-align: start; }

.carousel-items .content-item.wide {
  width: 100%;
  flex: 0 0 100%; }

.content-grid .content-item {
  margin-bottom: 2rem; }

.carousel-items .content-item img {
  width: 100%;
  height: auto;
  border-radius: 0px; }

.content-item .content-card-body {
  margin-top: 1rem; }

.content-item .content-title a {
  font-weight: bold;
  font-size: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.content-item .content-card a {
  position: relative;
  display: block; }

.content-item .content-episode-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #82261c;
  color: white;
  padding: 5px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  text-decoration: none; }

.content-item p.content-meta {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  margin-top: 0.5rem; }

.content-item p.content-author {
  font-size: 1.4rem;
  margin: 0;
  margin-top: 0.5rem; }

#shorts-carousel .content-title a {
  font-size: 1.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bl-white); }

[data-bs-theme="dark"] .content-item .content-title a {
  color: var(--bl-white); }

[data-bs-theme="dark"] .carousel-control {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--bl-black); }

article {
  display: flex;
  flex-direction: column; }
  article .article-title {
    font-size: 4rem;
    font-weight: bold;
    margin: 2rem 0 0.5rem 0; }
  article .article-meta {
    font-size: 1.4rem;
    color: var(--bl-gray-dark);
    margin-bottom: 1rem; }
  article .article-content {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem; }
  article .article-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid #a33023;
    padding: 2rem; }
    article .article-author img.avatar {
      margin-right: 2rem;
      width: 150px;
      height: 150px; }
    article .article-author .author-name {
      font-size: 2.2rem;
      font-weight: bold; }
  article .op-ed-page {
    font-size: 1.8rem;
    line-height: 1.6; }
  article .related-articles {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem; }
    article .related-articles .related-lookup {
      flex: 1;
      padding: .5rem 1rem;
      border: 1px solid #adb5bd; }
      article .related-articles .related-lookup .related-article-item {
        display: flex;
        flex-direction: row;
        align-items: center; }
        article .related-articles .related-lookup .related-article-item .related-article-thumbnail {
          flex: 0 0 60px;
          margin-right: 1rem; }
          article .related-articles .related-lookup .related-article-item .related-article-thumbnail img {
            width: 100%;
            height: 60px;
            border-radius: 0px;
            object-fit: cover; }
        article .related-articles .related-lookup .related-article-item .related-article-details {
          flex: 1; }
          article .related-articles .related-lookup .related-article-item .related-article-details .next-prev-text {
            font-size: 1.4rem;
            color: #495057; }
    article .related-articles .related-lookup.previous .related-article-item {
      flex-direction: row-reverse; }
      article .related-articles .related-lookup.previous .related-article-item .related-article-thumbnail {
        margin-right: 0;
        margin-left: 1rem; }

[data-bs-theme="dark"] article .article-meta {
  color: var(--bl-gray-light); }

[data-bs-theme="dark"] article .related-articles .related-lookup {
  border-color: #adb5bd; }
  [data-bs-theme="dark"] article .related-articles .related-lookup .related-article-item .related-article-details .next-prev-text {
    color: #adb5bd; }

@media (max-width: 767px) {
  article .article-title {
    font-size: 3rem; }
  article .article-meta {
    font-size: 1.2rem; }
  article .article-content {
    font-size: 1.6rem; }
  article .article-author {
    flex-direction: column;
    align-items: center;
    text-align: center; }
  article .article-author img.avatar {
    width: 200px;
    height: 200px; }
  article .related-articles {
    flex-direction: column; }
    article .related-articles .related-lookup {
      width: 100%;
      margin-bottom: 0rem; } }

.youtube-embed {
  background-color: #000;
  padding: 0 1rem 5rem 1rem; }

.blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.6; }
  .blurb .blurb-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bl-success); }
    .blurb .blurb-icon i {
      color: var(--bl-gray-dark); }
    .blurb .blurb-icon.active {
      background-color: var(--bl-secondary); }
      .blurb .blurb-icon.active i {
        color: var(--bl-white); }
    .blurb .blurb-icon.next {
      background-color: var(--bl-primary); }
  .blurb .blurb-text {
    font-weight: bold;
    font-size: 1.4rem; }

/*# sourceMappingURL=style.css.map */