:root {
  --bg-100: #ffffff;
  --bg-80: #efefef;
  --bg-60: #ddd;
  --bg-40: #ccc;
  --bg-20: #a0a0aa;
  --accent-dark: #411466;
  --accent-light: #8950b7;
  --accent: #692e99;
  --secondary-accent: #f6f605;
  --secondary-accent-light: #ffff6a;
  --text-secondary-accent: #000000;
  --link-accent: #c685fb;
  --text-50: #ccc;
  --text-80: #585858;
  --text-100: #000000;
  --text-accent: #ffffff;
  --fh-orange: #ff881f;
  --site-accent-color: #ff881f;
  --text-site-accent-color: #000;
  --margin-top: 60px;
}

[data-theme="dark"] {
  --font-color: #ffffff;
  --bg-100: #1a1b27;
  --bg-80: #23242f;
  --bg-60: #32333d;
  --bg-40: #555660;
  --bg-20: #9a9ba0;
  --text-50: #808080;
  --text-80: #ababab;
  --text-100: #eee;
  --link-accent: #f6f605;
  --text-accent: #000000;
}

[data-site="nf"] {
  --fh-orange: #18c741;
  --site-accent-color: #18c741;
  --text-site-accent-color: #000;
}

* {
  /* color: var(--text-100); */
  box-sizing: border-box;
}

picture {
  display: flex;
}

b {
  font-weight: bold;
}

.mode-switch-icon__sun {
  display: none;
}

[data-theme="dark"] .mode-switch-icon__moon {
  display: none;
}

[data-theme="dark"] .mode-switch-icon__sun {
  display: initial;
}

html {
  scrollbar-color: var(--bg-40) var(--bg-100);
  /* scrollbar-gutter: stable; */
}

body {
  color: var(--text-100);
  background-color: var(--bg-100);
  padding-top: var(--margin-top);
  font-family: "Inter", sans-serif;
}

body * {
  scrollbar-color: var(--bg-40) var(--bg-100);
}

i {
  font-style: italic;
}

input[type="text"],
textarea {
  width: 100%;
  font-size: 1em;
}

.content {
  padding-left: 250px;
}

.content-wrapper {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* button,
.button {
  background-color: var(--bg-100);
  border: 1px solid var(--bg-60);
  cursor: pointer;
  font-size: 100%;
} */

.post-feed-container:not(.first-child) {
  margin-top: 16px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 12px;
}

button {
  cursor: pointer;
  background: none;
  font-size: inherit;
}

.button {
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border-radius: 50px;
  padding: 4px 8px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #000000;
  color: var(--text-100);
  border-color: var(--text-100);
  font-size: 13px;
  cursor: pointer;
  outline: none;
  padding: 8px 14px;
  line-height: 1.2;
}

.button.primary {
  background-color: var(--site-accent-color);
  color: var(--text-site-accent-color);
  border-color: transparent;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.button:not([disabled]):hover {
  background-color: var(--text-100);
  border-color: transparent;
  color: var(--bg-100);
}

.button:not([disabled]).primary:hover {
  background-color: var(--text-100);
  color: var(--bg-100);
}

.header {
  top: 0;
  height: 60px;
  width: 100%;
  position: fixed;
  z-index: 500;
  background-color: var(--bg-100);
  border-bottom: 1px solid var(--bg-60);
}

.header-inner {
  margin: 0 auto;
  /* width: 1476px; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.header-inner > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logolink {
  display: flex;
  padding: 4px;
  gap: 4px;
}

.header-logolink > span {
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}

[data-theme="light"] .header-logolink {
  background-color: #000000;
}

.header-logo {
  height: 24px;
}

.content .ad-container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.ad-container__cta {
  color: inherit;
  font-size: 15px;
  line-height: normal;
  border-bottom: 1px solid var(--text-80);
}

.ad-container__cta:hover {
  border-color: inherit;
}

.content-wrapper > .ad-container {
  margin-top: 24px;
  margin-bottom: 24px;
}

.post-feed {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}

.post-feed .ad-container {
  grid-column-start: 1;
  grid-column-end: 3;
}

.boot-calendar__block .ad-container {
  grid-column-start: 1;
  grid-column-end: 4;
}

.post-feed__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* background-color: var(--bg-100); */
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.post-feed__item:hover {
  opacity: 0.7;
}

.post-feed__item-link {
  color: inherit;
  text-decoration: none;
}

.post-feed__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.post-feed__item-image {
  width: 100%;
  aspect-ratio: 80/41;
  object-fit: cover;
}

.post-feed__item-headline {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
}

.post-feed__item-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 15px;
}

.post-status {
  display: inline-block;
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  font-weight: bold;
}

.post-status.OFFICIAL,
.post-status.OFFIZIELL {
  background-color: #2bd913;
  color: #000000;
}

.post-status.LEAK {
  background-color: #b61313;
  color: #ffffff;
}

.post-status.PREDICTION,
.post-status.CONCEPT,
.post-status.VORHERSAGE,
.post-status.KONZEPT {
  background-color: #1638b2;
  color: #ffffff;
}

.post-feed__item-meta-el {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-feed__item-meta-el > svg {
  width: 16px;
  height: 16px;
}

.top-posts-container__2 {
  overflow: hidden;
}

.top-posts-container__2 .post-feed__item-headline {
  font-size: 16px;
}

.top-posts-container__2 .post-feed__item-content {
  padding: 12px;
  gap: 12px;
}

.top-posts-container__2 .post-feed__item-meta {
  font-size: 14px;
}

/* .top-posts-container__2 svg {
  width: 20px;
  height: 20px;
} */

.top-posts-container__2 .post-status {
  font-size: 12px;
}

.post-item-container {
  /* display: flex; */
  /* align-items: flex-start; */
  border-bottom: 1px solid var(--bg-60);
  /* width: 1500px; */
  /* margin: 0 auto; */
}

.post-item-container__inner {
  display: flex;
  align-items: flex-start;
  /* border-bottom: 1px solid var(--bg-60); */
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}

.post-item {
  overflow: hidden;
  padding: 24px 0 0 0;
  border-left: 1px solid var(--bg-60);
  border-right: 1px solid var(--bg-60);
  flex-grow: 1;
}

[data-plus="1"] .post-item {
  border-right: none;
}

.post-item-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.post-item__content {
  margin-top: 24px;
  padding-bottom: 32px;
  font-size: 19px;
  line-height: 1.5;
}

.post-item__content h2 {
  font-size: 22px;
  font-weight: bold;
}

.post-item__content h3 {
  font-size: 21px;
  font-weight: bold;
}

.post-item__content h4 {
  font-size: 16px;
  font-weight: bold;
}

.post-item__content > blockquote {
  border-left: 12px solid var(--bg-60);
  padding: 16px 0 16px 16px;
}

.post-item__content > * {
  margin-top: 24px;
}

.post-item__content > *:first-child {
  margin-top: 0;
}

.post-item__content > h2 + p,
.post-item__content > h3 + p,
.post-item__content > h4 + p {
  margin-top: 12px;
}

.post-item__content ul {
  list-style: disc;
}

.post-item__content .image-set {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0;
}

.post-item__content img {
  max-width: 100%;
  max-height: 600px;
}

.post-item__content img:only-child {
  width: 100%;
  object-fit: contain;
}

.hiddenImg {
  display: none !important;
  margin: 0 !important;
  opacity: 0.5;
}

.post-item-meta {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  width: 248px;
  flex-shrink: 0;
  position: sticky;
  top: var(--margin-top);
}

.post-item-meta a {
  color: inherit;
}

.post-item-side__section {
  margin: 20px 0;
}

.post-item-side__section__social-link > svg,
.post-item-side__section__social-link > img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.post-item-meta__labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-item-meta__labels-item {
  display: flex;
  padding: 4px;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-60);
  border-radius: 4px;
  color: inherit;
  align-items: center;
  line-height: 1;
}

.post-item-meta__labels-item:hover {
  opacity: 0.7;
}

.post-item-side__section__social-link {
  color: inherit;
  display: flex;
  align-items: center;
  /* color: var(--text-80); */
  /* transition: color 100ms ease-in-out; */
  margin: 12px 0;
  padding: 0;
  border: 0;
}

.post-item-ad {
  /* width: 280px; */
  position: sticky;
  top: var(--margin-top);
  padding: 24px;
  flex-shrink: 0;
}

.post-item__content > q {
  display: block;
  border-top: 8px solid var(--fh-orange);
  border-bottom: 8px solid var(--fh-orange);
  padding: 16px 0;
  font-size: 24px;
  color: var(--fh-orange);
  font-style: italic;
}

.post-item__content > q > a {
  color: inherit;
  border-bottom: 2px solid var(--fh-orange);
}

.twitter-container,
.ig-container,
.getty-container,
.gumroad-container {
  display: flex;
  justify-content: center;
}

.post-item-title,
.post-item__content > p,
.post-item__content > form,
.post-item__content > blockquote,
.post-item__content > q,
.post-item__content > ul,
.post-item__content > ol,
.post-item__content > h2,
.post-item__content > h3,
.post-item__content > h4,
.post-item__content > .inpost-link,
.post-item__content > .slideshow-wrapper,
.post-item__content > .post-content__slideshow,
.post-item__content > .inpost-ad,
.post-item__content > .ig-container,
.post-item__content > .getty-container,
.post-item__content > .video-container,
.post-item__content > .vote-embed-container,
.twitter-container,
.post-item-byline,
.gumroad-container,
.bullet-points {
  width: 680px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-container .post-item__content > p,
.content-container .post-item__content > form,
.content-container .post-item__content > blockquote,
.content-container .post-item__content > q,
.content-container .post-item__content > ul,
.content-container .post-item__content > h2,
.content-container .post-item__content > h3,
.content-container .post-item__content > h4,
.content-container .post-item__content > .inpost-link,
.content-container .post-item__content > .slideshow-wrapper,
.content-container .post-item__content > .post-content__slideshow,
.content-container .post-item__content > .inpost-ad,
.content-container .post-item__content > .ig-container,
.content-container .post-item__content > .video-container {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.video-container {
  position: relative;
  /* padding-bottom: 56.25%; */
  /* padding-top: 30px; */
  /* height: 0; */
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-item__content > ul,
.post-item__content > li {
  padding-left: 20px;
}

.post-item__content > p a:not(.button)[href],
.post-item__content > blockquote a[href],
.post-item__content > h2 > a[href],
.post-item__content table a[href],
.post-item__content .league-table a[href],
.post-item__content > h3 > a[href],
.post-item__content > h4 > a[href],
.post-item__content > ul > a[href],
.post-item__content > ol > a[href],
.post-item__content > ul > li > a[href],
.post-item__content > ol > li > a[href],
.underline-link {
  color: var(--text-100);
  border-bottom: 2px solid var(--fh-orange);
}

.post-item__content > p a:not(.button)[href]:hover,
.post-item__content > blockquote a[href]:hover,
.post-item__content > h2 > a[href]:hover,
.post-item__content table a[href]:hover,
.post-item__content .league-table a[href]:hover,
.post-item__content > h3 > a[href]:hover,
.post-item__content > h4 > a[href]:hover,
.post-item__content > ul > a[href]:hover,
.post-item__content > ol > a[href]:hover,
.post-item__content > ul > li > a[href]:hover,
.post-item__content > ol > li > a[href]:hover,
.underline-link:hover {
  border-color: var(--text-100);
}

.post-item__content b {
  font-weight: bold;
}

.inpost-link {
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  /* border: 1px solid var(--bg-60); */
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-80);
}

.inpost-link:hover {
  opacity: 0.7;
}

.inpost-link .inpost-link__image {
  width: 200px;
  aspect-ratio: 80/41;
  object-fit: cover;
  max-width: unset;
  max-height: unset;
  flex-shrink: 0;
}

.inpost-link-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  overflow: hidden;
}

.inpost-link__title {
  font-size: 19px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.disqus-container {
  border-top: 1px solid var(--bg-60);
  padding: 32px;
}

.post-content__slideshow {
  overflow: hidden;
  position: relative;
  font-size: 0;
  overflow: hidden;
  /* overflow-x: auto; */
  /* scroll-snap-type: x mandatory; */
  max-width: 600px;
  max-width: 600px;
}

.post-content__slideshow img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-filter: url(#sharpBlur);
  filter: url(#sharpBlur);
}

.post-content__slideshow img {
  z-index: 1;
  position: relative;
  /* width: 100%; */
}

.post-content__slideshow ul {
  display: flex;
  padding: 0;
  margin: 0;
  /* gap: 20px; */
  /* width: 100%; */
  /* transition: transform 200ms ease-in-out; */
  width: auto;
  will-change: transform;
  cursor: grab;
  /* align-items: center; */
}

.post-content__slideshow ul li {
  /* scroll-snap-align: center; */
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-content__slideshow-controls {
  font-size: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px !important;
}

.post-content__slideshow-controls > button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--text-100);
}

.post-content__slideshow-controls > button:not(.active) {
  visibility: hidden;
}

.post-content__slideshow-controls > button.active:hover {
  opacity: 0.7;
}

.post-content__slideshow-controls > button > svg {
  width: 20px;
  height: 20px;
}

.post-content__slideshow-controls > span {
  justify-self: center;
  font-variant-numeric: tabular-nums;
}

.boot-calendar h2 {
  margin-top: 24px;
  font-size: 22px;
  font-weight: bold;
}

.boot-calendar h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.boot-calendar__block {
  margin-top: 16px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
}

.store-list-container .boot-calendar__block {
  grid-template-columns: repeat(4, 1fr);
}

.voucher-list-container .boot-calendar__block {
  grid-template-columns: repeat(2, 1fr);
}

.boot-calendar__boot {
  display: flex;
  flex-direction: column;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.boot-calendar__boot-content-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.boot-calendar__boot-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.store-list-container .boot-calendar__boot-img {
  object-fit: contain;
  background-color: #fafafa;
  padding: 15%;
}

.store-list-container p {
  line-height: 1.6;
}

.template-list-container .boot-calendar__boot-img {
  aspect-ratio: 1;
}

span.store-list__disclaimer {
  font-size: 14px;
  color: var(--text-80);
}

.boot-calendar__boot-name {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__collection-name {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__boot-release-date {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-100);
}

.boot-calendar__colorway {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.boot-calendar__collection-name,
.boot-calendar__boot-release-date {
  display: flex;
  gap: 8px;
  align-items: center;
}

.boot-calendar__colorway > svg,
.boot-calendar__collection-name > svg,
.boot-calendar__boot-release-date > svg {
  width: 20px;
  height: 20px;
}

.boot-calendar__boot-link:hover {
  opacity: 0.7;
}

.inpost-ad {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  background-color: var(--bg-80);
  border-radius: 8px;
}

.inpost-ad__inner {
  display: flex;
  gap: 16px;
  position: relative;
  padding-right: 60px;
}

.inpost-ad__inner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.inpost-ad__inner__image {
  max-width: 130px !important;
  max-height: 130px !important;
  border-radius: 8px;
}

.inpost-ad__inner__image:hover {
  opacity: 0.7;
}

.inpost-ad__inner__image-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.inpost-ad__inner_main-button {
  background-color: var(--text-100);
  color: var(--bg-100);
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 16px;
}

.inpost-ad__inner_main-button:hover {
  opacity: 0.7;
}

.inpost-ad__inner__name {
  font-weight: bold;
}

.inpost-add__inner__logo {
  margin: 0 !important;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 60px !important;
  background-color: #ffffff;
  padding: 8px;
}

.inpost-add__inner__logo:hover {
  opacity: 0.7;
}

.inpost-ad__inner__link-list {
  display: flex;
  gap: 16px;
}

.inpost-ad__inner__link-list > .button {
  padding: 4px 8px;
  border: 1px solid var(--text-100);
  font-weight: bold;
  font-size: 16px;
}

.inpost-ad__inner__link-list > .button:hover {
  border-color: transparent;
  background-color: var(--text-100);
  color: var(--bg-100);
  opacity: 1;
}

.tab-container__titles {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.tab-container__title {
  color: inherit;
  font-size: 19px;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.tab-container__title > a {
  color: inherit;
}

.tab-container__title:only-child {
  cursor: initial;
}

.tab-container__title.active {
  font-weight: bold;
  border-color: var(--fh-orange);
}

.tab-container__title:not(.active) {
  color: var(--text-80);
}

.tab-container__title:not(.active):hover {
  opacity: 0.7;
}

.tab-container__content {
  margin-top: 16px;
}

.tab-container__content-tab {
  display: none;
}

.tab-container__content-tab.active {
  display: initial;
}

.main-title {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--bg-60);
  gap: 8px;
}

.main-title > svg {
  max-width: 32px;
  max-height: 32px;
}

.main-title__logo {
  max-width: 32px;
  max-height: 32px;
}

.boot-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  overflow-x: auto;
  gap: 24px;
  padding: 0 0 8px 0;
  align-items: flex-start;
}

.kit-container {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  gap: 16px;
  padding: 0 0 8px 0;
  align-items: flex-start;
}

.kit-container.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kit-container.grid .ad-container {
  grid-column-start: 1;
  grid-column-end: 5;
}

.kit-container > a {
  color: inherit;
}

.kit {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid var(--bg-60); */
  background-color: var(--bg-80);
  border-radius: 8px;
  overflow: hidden;
}

.kit-container.grid .kit {
  width: auto;
}

.kit-teamname {
  font-weight: bold;
  font-size: 18px;
  /* display: inline-flex; */
  gap: 8px;
  align-items: center;
  padding: 16px;
  text-align: center;
}

.kit-teamname > svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kit-image-container {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  background-color: var(--bg-80);
}

.kit-image-container.landscape {
  aspect-ratio: initial;
}

.kit-image-container img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-35%) translateX(-50%);
  height: 145%;
  width: auto !important;
  object-fit: initial !important;
  max-width: initial !important;
  max-height: initial !important;
}

.kit-image-container.landscape img {
  position: relative;
  width: 100% !important;
  height: 100%;
  object-fit: contain !important;
  left: initial;
  top: initial;
  transform: initial;
}

.kit-image-container.landscape img.bg {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  -webkit-filter: url(#sharpBlur);
  filter: url(#sharpBlur);
}

.kit-container > a:hover {
  opacity: 0.7;
}

.fka-cta {
  font-size: 22px;
  font-weight: bold;
  margin-top: 24px;
  display: block;
}

.fka-cta:hover {
  opacity: 0.7;
}

.breadcrumbs-container {
  /* margin-bottom: 32px; */
  border-bottom: 1px solid var(--bg-60);
  padding: 16px 0;
}

.breadcrumbs-container.no-margin {
  margin-bottom: 0;
}

.breadcrumbs-container > .content-container {
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  /* margin-top: 0; */
  /* overflow-x: auto; */
  /* border fix */
  /* padding-bottom: 2px; */
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs svg {
  width: 20px;
  height: 20px;
  color: #707070;
  flex-shrink: 0;
}

.breadcrumb__home {
  display: flex;
  align-items: center;
}

.breadcrumb__home svg {
  width: 20px;
  height: 20px;
  color: var(--text-100);
  opacity: 0.5;
}

.breadcrumb__home svg:hover {
  opacity: 1;
}

.breadcrumbs a:not(.breadcrumb__home) {
  text-decoration: none;
  border-bottom: 1px solid var(--bg-60);
}

.breadcrumbs a:hover {
  border-color: var(--text-100);
}

.team-list {
  display: grid;
  gap: 20px;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  align-items: flex-start;
}

.team-list > a {
  color: inherit;
}

.team-list__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--bg-80);
  border-radius: 8px;
  padding: 8px;
  align-items: center;
}

.team-list__item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  align-self: center;
}

.team-list > a {
  text-decoration: none;
}

.team-list > a:hover {
  opacity: 0.7;
}

.team-list__item > div {
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
}

.league-table-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  /* gap: 64px; */
}

.league-table {
  width: 50%;
}

.league-table:nth-child(2n),
.league-table:nth-child(2n) td:first-child {
  border-left: none;
}

.league-table .team-name-container,
.league-table .team-name-container > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.league-table .team-name-container .team-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-item__content .league-table .team-name-container > a[href] > div {
  overflow: hidden;
  text-overflow: ellipsis;
}

.league-table .team-name-container img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.league-table tr td {
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
}

.league-table {
  display: grid;
}

.league-table__team {
  display: flex;
  flex: 1 0 0;
}

.league-table__team > div {
  flex: 1 0 0;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  /* border: 1px solid var(--bg-60); */
}

.league-table__team > div:first-child {
  flex: 0 0 220px;
  overflow: hidden;
}

.league-table__team > div:not(:first-child) {
  justify-content: center;
}

.league-table__team > div {
  border-top: 2px solid var(--bg-60);
  border-left: 2px solid var(--bg-60);
}

.league-table__team > div:last-child {
  border-right: 2px solid var(--bg-60);
}

.league-table__team:last-child > div {
  border-bottom: 2px solid var(--bg-60);
}

.league-table:not(:first-child) .league-table__team > div:first-child {
  border-left: none;
}

.post-item__content .league-table .team-name-container > a[href] {
  border: none;
  overflow: hidden;
}

.post-item__content .league-table .team-name-container > a[href] span {
  border-bottom: 2px solid var(--fh-orange);
  display: inline;
}

.post-item__content .league-table .team-name-container > a[href]:hover img {
  opacity: 0.7;
}

.post-item__content .league-table .team-name-container > a[href]:hover span {
  border-color: var(--font-color);
}

.navigation {
  background-color: var(--bg-100);
  position: fixed;
  width: 250px;
  top: var(--margin-top);
  bottom: 0px;
  border-right: 1px solid var(--bg-60);
  z-index: 600;
  overflow: hidden;
}

.navigation-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.navigation-inner__container {
  max-height: 100%;
  overflow-y: auto;
}

.navigation-inner__container > h3 {
  margin-top: 16px;
  padding: 0 12px 4px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.navigation-inner__container > * {
  padding: 12px;
}

.navigation-inner__container > a {
  color: inherit;
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.navigation-inner__container > a:hover {
  background-color: var(--bg-80);
}

.navigation-inner__container > a > svg,
.navigation-inner__container > a img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.navigation-inner__container > a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}

.navigation__external-link > svg {
  width: 12px;
  height: 12px;
}

.navigation__close-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  color: inherit;
  display: flex;
  align-items: center;
  padding: 8px;
}

.navigation__close-btn > svg {
  width: 32px;
  height: 32px;
}

.bottom-navigation {
  background-color: var(--bg-100);
  position: fixed;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  border-top: 1px solid var(--bg-60);
  z-index: 105;
  width: 100%;
  height: 70px;
}

.bottom-navigation > a {
  color: inherit;
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  overflow: hidden;
  /* flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  text-align: center;
  min-width: 0; */
}

.bottom-navigation > a.active {
  background-color: var(--text-100);
  color: var(--bg-100);
}

.bottom-navigation > a > svg {
  width: 24px;
  height: 24px;
}

.bottom-navigation > a > span {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  /* text-overflow: ellipsis; */
  text-align: center;
}

.header-text-button {
  border: none;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
}

.header-text-button:hover {
  color: var(--fh-orange);
}

.header-icon-button {
  border: none;
  padding: 4px;
  display: flex;
  color: var(--text-80);
}

.header-icon-button.active {
  color: var(--fh-orange);
}

.header-icon-button > svg {
  width: 24px;
  height: 24px;
}

.header-icon-button:hover {
  color: var(--text-100);
}

.sidebar-ad {
  flex-grow: 0;
  flex-shrink: 0;
  position: sticky;
  top: var(--margin-top);
  padding-top: 24px;
}

.two-column-layout {
  margin: 0 auto;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 32px;
}

.two-column-layout > div:only-child {
  margin-right: -32px;
}

.two-column-layout > div {
  overflow: hidden;
}

.top-posts-container {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 400px auto 300px;
  gap: 24px;
}

.post-feed__item.secondary > .post-feed__item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.post-feed__item.secondary .post-feed__item-image {
  width: 160px;
  flex-shrink: 0;
}

.post-feed__item.secondary .post-feed__item-headline {
  font-weight: normal;
  font-size: 14px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-posts-container__3 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-posts-container__2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-blocks {
  padding-bottom: 24px;
}

.content-blocks > *:not(:first-child) {
  margin-top: 24px;
}

.post-item-byline__section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-item-byline__section > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-item-byline__section svg {
  width: 20px;
  height: 20px;
}

.post-item-byline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-item-byline__section a {
  color: inherit;
}

.post-item-byline__section .post-item-side__section__social-link {
  margin: 0;
}

.search-container {
  position: fixed;
  width: 100%;
  top: 60px;
  min-height: 400px;
  background-color: #ffffff;
  background-color: var(--bg-100);
  z-index: 800;
  display: flex;
  max-height: 800px;
  border-bottom: 1px solid var(--bg-60);
}

.search-container:not(.visible) {
  display: none;
}

.search-container:focus {
  outline: none;
}

.search-container__results {
  overflow-y: auto;
  padding: 1px 0;
  /* display: flex; */
  height: 100%;
}

.search-container-inner {
  width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 24px;
}

.search-container__form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--bg-60);
  position: sticky;
  top: 0;
  z-index: 5;
}

input.search-container__input {
  border: none;
  font-size: 18px;
  padding: 0;
  flex-grow: 1;
  margin: 0 8px;
  background: none;
  color: var(--text-100);
}

.flex {
  display: flex;
}

.center {
  align-items: center;
  justify-content: center;
}

input.search-container__input:focus {
  outline: none;
}

.search-container__form svg {
  width: 24px;
  height: 24px;
  color: #a0a0a0;
  color: var(--text-50);
}
.search-container__cancel:hover 