/* Variables  */
/* Aliases  */
.sr-only {
  position: absolute;
  /* Outside the DOM flow */
  height: 1px;
  width: 1px;
  /* Nearly collapsed */
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  left: -9999px;
  text-indent: -5000px;
  clip: rect(1px, 1px, 1px, 1px);
  /* All other browsers */
}

/* Variables  */
/* Aliases  */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

:host(:focus) {
  outline: none !important;
  border: none !important;
}

:host {
  width: 100%;
  display: flex;
  container-type: inline-size;
  position: relative;
  flex-direction: column;
  border-radius: 4px;
  background-color: whitesmoke;
  font-family: "museo-sans", arial, sans-serif;
}
:host .expandable {
  display: none;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: whitesmoke;
  color: #414651;
}
:host .expandable.expanded {
  display: unset;
  padding: 16px 24px 48px;
}
@container (width > 640px) {
  :host .expandable.expanded.hasImage {
    padding-left: 234px;
  }
}
:host .expand-button {
  position: absolute;
  bottom: 0;
  right: 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  color: #01417b;
}
:host .expand-button:hover {
  color: #00305c;
}
:host .expand-button:active {
  color: #1a77e9;
}

.article-container {
  width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  text-decoration: none;
  display: flex;
  flex: 1;
  border-radius: 4px;
}
.article-container:focus-visible {
  border-radius: 4px;
  outline-offset: 2px;
  outline: 1.5px solid var(--bi-primary-50);
  box-shadow: 0 0 0 2px white;
}
.article-container.expanded {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.article-container .line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.article-container .header {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.article-container .article-image {
  overflow: hidden;
  object-fit: cover;
}
.article-container .subtitle {
  width: fit-content;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.article-container .body-text {
  white-space: break-spaces;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.article-container .article-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.article-container .article-body-main-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-start;
  overflow: hidden;
}
.article-container:is(a):hover {
  background-color: rgba(1, 65, 127, 0.1019607843);
}
.article-container:is(a):hover .header {
  text-decoration: underline;
  text-decoration-color: #0b62c5;
  text-underline-offset: 4px;
}
.article-container.large {
  flex-direction: column;
}
.article-container.large .article-image {
  height: 375px;
  width: 100%;
  display: block;
}
.article-container.large .article-body {
  padding: 24px;
  height: 256px;
}
.article-container.small {
  height: 210px;
  align-items: flex-start;
}
@container (width < 640px) {
  .article-container.small {
    height: unset;
    max-height: 300px;
    min-height: 130px;
  }
}
.article-container.small .article-image {
  height: 210px;
  width: 210px;
}
@container (width < 640px) {
  .article-container.small .article-image {
    display: none;
  }
}
.article-container.small .article-body {
  padding: 16px 24px;
  min-width: 256px;
  align-self: stretch;
}