@font-face {
  font-family: 'BricolageGrotesque';
  src: url('../assets/fonts/BricolageGrotesque/BricolageGrotesque-VariableFont_opsz-wdth-wght.ttf') format('truetype');
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  font-style: normal;
}

* {
  font-size: .9rem;
}

button, a, img {
  -webkit-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

body {
  margin: 0;
  font-family: "BricolageGrotesque", sans-serif;
  background-color: var(--background);
  color: var(--primary);
}

/* -------------------------------- */
/* -- HIDE SCROLLBARS GLOBAL ------ */

html, body, * {
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* Internet Explorer / altes Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;                  /* Chrome, Safari, Edge */
}

/* -- HIDE SCROLLBARS GLOBAL END -- */
/* -------------------------------- */
/* -- HEADER --------------------- */

header {
  width: calc(100% - 90px);
  min-height: 65px;
  background-color: var(--background-accent-80);
  padding: 0 15px;
  border-radius: 30px;
  box-shadow: 0 0 10px var(--primary-5);
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  transition: all ease .3s;
}

header.scrolled {
  min-height: 55px;
  background-color: var(--background-accent-90);
  border-radius: 20px;
  top: 5px;
}

a.header-logo {
  cursor: pointer;
}

img.header-logo {
  height: 40px;
  transition: all ease .3s;
}

header.scrolled img.header-logo  {
  height: 30px;
}

.header-title {
  display: inline-block;
  height: 100%;
  margin-left: 15px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--primary);
}

/* -- HEADER -------------- END -- */
/* -------------------------------- */
/* -- HERO ------------------------ */

.mainpagehero {
  height: calc(75vh);
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 20px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.mainpagehero-background {
  position: absolute;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  transform: scale(1);
  transition: all ease .5s;
}

.mainpagehero-overlay {
  height: calc(100%);
  width: calc(100% - 40px);
  padding: 20px;
  padding-top: calc(20px + 80px);
  background-color: var(--primary-40);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: white;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  transition: all ease .5s;
}

.mainpagehero-overlay:hover {
  background-color: var(--primary-60);
}

.mainpagehero:hover .mainpagehero-background {
  transform: scale(1.025);
}

.mainpagehero-title {
  font-size: 6rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-wrap: nowrap;
}

.mainpagehero-title span {
  height: 60%;
  aspect-ratio: 1/1;
  width: auto;
  background-color: white;
  color: black;
  font-size: calc(60 * 6rem / 100);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mainpagehero-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  background-color: var(--secondary);
  color: var(--background-accent);
  padding: 5px 10px;
}

.mainpagehero-description {
  width: 800px;
  margin-top: 40px;
  background-color: var(--primary-80);
  padding: 30px 40px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* -------------------------------- */
/* -- CLUB SLIDER ----------------- */

.clubslider-title {
  width: calc(100% - 160px);
  padding: 40px 80px 0 80px;
  display: block;
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  text-wrap: wrap;
  cursor: default;
}

.clubslider-title mark {
  font-size: 3rem;
  font-weight: 400;
  padding: 0 0.25em;
  background-color: var(--secondary);
  color: var(--background-accent);
}

.clubslider {
  height: auto;
  width: calc(100% - 160px);
  padding: 0 80px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 70px;
  margin-bottom: 20px;
  overflow: hidden;
  overflow-x: scroll;
  cursor: grab;

  user-select: none;
  -webkit-user-select: none;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.clubslider::-webkit-scrollbar {
  display: none;
}

.clubslider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.clubslider-single {
  height: 300px;
  width: 250px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.clubslider.is-dragging .clubslider-single {
  pointer-events: none;
}

.clubslider-single.highlight {
  width: 350px;
}

.clubslider-single-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease .3s;
}

.clubslider-single:hover .clubslider-single-background {
  transform: scale(1.05);
}

.clubslider-single-overlay {
  position: absolute;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  background-color: var(--primary-40);
  transition: all ease .3s;
}

.clubslider-single-overlay:hover {
  background-color: var(--primary-60);
}

img.clubslider-single-logo {
  width: 80px;
  position: absolute;
  bottom: 20px;

  transform: translateY(0) scale(1);
  transform-origin: center;

  transition:
    bottom 0.3s ease,
    transform 0.3s ease;
}

.clubslider-single-overlay:hover img.clubslider-single-logo {
  bottom: 50%;
  transform: translateY(50%) scale(1.25);
}

.clubslider-interaction {
  height: 20px;
  width: calc(100% - 200px);
  padding: 0 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 99;
  margin-bottom: 40px;
}

.clubslider-interaction-button {
  all: unset;
  cursor: pointer;
  opacity: .6;
  transition: all ease .3s;
}

.clubslider-interaction-button:hover {
  opacity: 1;
}

.clubslider-interaction-button.prev {
  padding-left: 5px;
  padding-right: 0px;
}

.clubslider-interaction-button.prev:hover {
  padding-left: 0px;
  padding-right: 5px;
}

.clubslider-interaction-button.next {
  padding-left: 0px;
  padding-right: 5px;
}

.clubslider-interaction-button.next:hover {
  padding-left: 5px;
  padding-right: 0px;
}

img.clubslider-interaction-button-icon {
  height: 10px;
}

/* -- CLUB SLIDER ---------- END -- */
/* -------------------------------- */
/* -- RECENT POSTS ------------- */


.recentposts-grid {
  width: calc(100% - 160px);
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 40vh);
  gap: 8px;
}

.recentposts-grid a {
  background-color: var(--primary-10);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.recentposts-grid-single-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease .3s;
}

.recentposts-grid a:hover .recentposts-grid-single-background {
  transform: scale(1.05);
}

.recentposts-grid-single-overlay {
  position: absolute;
  height: calc(100% - 50px);
  width: calc(100% - 50px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  background-color: var(--primary-40);
  color: var(--background-accent);
  transition: all ease .3s;
}

.recentposts-grid-3 .recentposts-grid-single-overlay {
  height: calc(100% - 80px);
  width: calc(100% - 80px);
  padding: 40px;
}

.recentposts-grid-single-overlay:hover {
  background-color: var(--primary-60);
}

.recentposts-grid-single-subtitle {
  font-size: 1.2rem;
}

.recentposts-grid-3 .recentposts-grid-single-overlay .recentposts-grid-single-subtitle {
  font-size: 1.4rem;
}

.recentposts-grid-single-title {
  font-size: 1.8rem;
}

.recentposts-grid-3 .recentposts-grid-single-overlay .recentposts-grid-single-title {
  font-size: 2.4rem;
}

.recentposts-grid-single-button {
  font-size: 1rem;
  padding: 5px 15px;
  border: 1px solid var(--background-accent);
  border-radius: 99px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.recentposts-grid-single-button-icon {
  height: 9px;
  transform: rotate(0deg);
  transition: all ease .3s;
}

.recentposts-grid-single-button:hover .recentposts-grid-single-button-icon {
  transform: rotate(45deg);
}
   
.recentposts-grid-1 {
  
}

.recentposts-grid-2 {
  grid-column-start: 1;
  grid-row-start: 2;
}

.recentposts-grid-3 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.recentposts-grid-4 {
  grid-row: span 1 / span 1;
  grid-row-start: 3;
}

.recentposts-grid-4 {
  grid-row: span 1 / span 1;
  grid-row-start: 3;
}

.recentposts-grid-5 {
  grid-row: span 1 / span 1;
  grid-row-start: 3;
}

/* -- RECENT POSTS ------ END -- */
/* -------------------------------- */
/* -- MOST VIEWED POSTS -------- */

.mostviewedposts {
  min-height: 80vh;
  width: calc(100% - 40px);
  margin: 80px 20px;
  background-color: var(--primary);
  color: var(--background-accent);
  border-radius: 40px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

.mostviewedposts-overlay {
  width: 100%;
  min-height: 80vh;
  padding: 60px;
  box-sizing: border-box;
  background-color: var(--primary-90);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.mostviewedposts-header {
  height: auto;
  width: calc(100% - 50px);
  padding: 0 25px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.mostviewedposts-header-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mostviewedposts-title {
  font-size: 3rem;
}

.mostviewedposts-title mark {
  font-size: 3rem;
  font-weight: 400;
  padding: 0 0.25em;
  background-color: var(--secondary);
  color: var(--background-accent);
}

.mostviewedposts-description {
  font-size: 1.2rem;
}

.mostviewedposts-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.mostviewedposts-list-single {
  height: calc(80vh - 120px - 166px - 40px);
  width: calc(100% / 3);
  background-color: var(--primary-10);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mostviewedposts-list-single-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease .3s;
}

.mostviewedposts-list a:hover .mostviewedposts-list-single-background {
  transform: scale(1.05);
}

.mostviewedposts-list-single-overlay {
  position: absolute;
  height: calc(100% - 50px);
  width: calc(100% - 50px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  background-color: var(--primary-40);
  color: var(--background-accent);
  transition: all ease .3s;
}

.mostviewedposts-list-single-overlay:hover {
  background-color: var(--primary-60);
}

.mostviewedposts-list-single-subtitle {
  font-size: 1.2rem;
}

.mostviewedposts-list-single-title {
  font-size: 1.8rem;
}

/* -- MOST VIEWED POSTS - END -- */
/* -- MORE POSTS --------------- */

.moreposts-grid {
  width: calc(100% - 160px);
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 40vh;
  gap: 8px;
}

.moreposts-grid a {
  background-color: var(--primary-10);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.moreposts-grid-single-background {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease .3s;
}

.moreposts-grid a:hover .moreposts-grid-single-background {
  transform: scale(1.05);
}

.moreposts-grid-single-overlay {
  position: absolute;
  height: calc(100% - 50px);
  width: calc(100% - 50px);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  background-color: var(--primary-40);
  color: var(--background-accent);
  transition: all ease .3s;
}

.moreposts-grid-single-overlay:hover {
  background-color: var(--primary-60);
}

.moreposts-grid-single-subtitle {
  font-size: 1.2rem;
}

.moreposts-grid-single-title {
  font-size: 1.8rem;
}

/* -- MORE POSTS -------- END -- */
/* -------------------------------- */
/* -------------------------------- */
/* -- NEWSLETTER ------------------ */

.newsletter {
  min-height: 60vh;
  width: calc(100% - 40px);
  margin: 80px 20px;
  background-color: var(--primary);
  color: var(--background-accent);
  border-radius: 40px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
}

.newsletter-overlay {
  width: 100%;
  min-height: 60vh;
  padding: 60px;
  box-sizing: border-box;
  background-color: var(--primary-90);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.newsletter-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-align: center;
}

.newsletter-subtitle {
  font-size: 1.6rem;
  text-align: center;
}

form.newsletter {
  all: unset;
  min-height: 50px;
  margin-top: 60px;
  border: 1px solid var(--background-accent);
  border-radius: 99px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

form.newsletter input,
form.newsletter select {
  all: unset;
  height: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--background-accent);
  padding: 0 20px;
  font-size: 1.4rem;
  border-right: 1px solid var(--background-accent);
  transition: all ease .3s;
}

form.newsletter input {
  cursor: text;
}

form.newsletter select {
  cursor: pointer;
}

form.newsletter select option {
  background-color: var(--primary);
  color: var(--background-accent);
  font-size: .8rem;
}

form.newsletter input.last,
form.newsletter select.last {
  border-right: 0px;
}

form.newsletter input::placeholder,
form.newsletter select::placeholder {
  color: var(--background-accent);
}

form.newsletter.sent input,
form.newsletter.sent select {
  width: 0px;
  padding: 0 0;
  border-right: 0px solid var(--background-accent-0);
  opacity: 0;
}

form.newsletter button {
  all: unset;
  height: calc(100% - 10px);
  margin: 5px;
  border: 1px solid var(--background-accent);
  border-radius: 99px;
  background-color: var(--background-accent);
  color: var(--primary);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all ease .3s;
}

form.newsletter button:hover {
  background-color: var(--background-accent-90);
}

form.newsletter.sent button {
  width: 100%;
  cursor: default;
}

form.newsletter.sent button:hover {
  background-color: var(--background-accent);
}

.newsletter-disclaimer {
  font-size: .8rem;
  text-align: center;
  color: var(--background-accent-60);
  margin-top: 20px;
  cursor: default;
  line-height: 1.4;
}

.newsletter-disclaimer a {
  font-size: .8rem;
  color: var(--background-accent-60);
  cursor: pointer;
  transition: all ease .3s;
}

.newsletter-disclaimer a:hover {
  color: var(--background-accent-80);
}


/* -- NEWSLETTER ----------- END -- */
/* -------------------------------- */
/* -- FOOTER ---------------------- */

footer {
  width: calc(100% - 180px);
  background-color: var(--background-accent-90);
  padding: 60px;
  padding-bottom: 40px;
  border-radius: 30px;
  box-shadow: 0 0 10px var(--primary-5);
  margin-left: 50%;
  margin-bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary);
  transition: all ease .3s;
}

.footer-primary {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.footer-right {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
}

img.footer-logo {
  height: 40px;
}

.footer-description {
  line-height: 1.4;
  cursor: default;
}

.footer-socials {
  display: flex;
  flex-direction: row;
}

a.footer-socials-single {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0px;
  transition: all ease .3s;
}

a.footer-socials-single:hover {
  background-color: var(--primary-5);
  border-radius: 10px;
}

img.footer-socials-single-icon {
  height: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links-horizontal {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.footer-links-title {
  font-size: .9rem;
  cursor: default;
  text-wrap: nowrap;
}

a.footer-links-single {
  font-size: .9rem;
  color: var(--primary-60);
  text-decoration: none;
  text-wrap: nowrap;
  cursor: pointer;
  transition: all ease .3s;
}

a.footer-links-single:hover {
  color: var(--primary-80);
}

.footer-secondary {
  width: 100%;
  border-top: 1px solid var(--primary-60);
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-secondary-text {
  color: var(--primary-60);
  cursor: default;
}

.underfooter {
  height: auto;
  width: calc(100% - 90px);
  aspect-ratio: 300 / 46.7897;
  margin-left: 50%;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* -- FOOTER --------------- END -- */
/* -------------------------------- */
/* -- POST ------------------------ */

  /* -------------------------------- */
  /* -- POST HERO ------------------- */

  .posthero {
    height: calc(100vh);
    width: calc(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    overflow: hidden;
    position: relative;

    animation: posthero .75s forwards;
    animation-delay: .25s;
  }

  @keyframes posthero {
    from {
      height: calc(100vh);
      width: calc(100%);
      margin: 0px;
      margin-bottom: 0px;
      border-radius: 0px;
    }
    to {
      height: calc(75vh);
      width: calc(100% - 40px);
      margin: 20px;
      margin-bottom: 80px;
      border-radius: 40px;
    }
  }

  .posthero-overlay {
    height: calc(100% - 160px);
    width: calc(100% - 160px);
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: var(--primary);
    background: linear-gradient(10deg, var(--primary-60) 0%, var(--primary-10) 100%);
    color: var(--background-accent);
    opacity: 0;

    animation: postheroOverlay .75s forwards;
    animation-delay: .25s;
  }

  @keyframes postheroOverlay {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  h1.posthero-title {
    all: unset;
    max-width: 70%;
    font-size: 2.8rem;
    line-height: 1.4;
    text-align: left;
    cursor: default;
    transform: translateY(40px);
    opacity: 0;

    animation: postheroTitle .75s ease forwards;
    animation-delay: .5s;
  }

  @keyframes postheroTitle {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0px);
      opacity: 1;
    }
  }

  /* -- POST HERO ------------ END -- */
  /* -------------------------------- */
  /* -- POST MAIN ------------------- */

  section.postmain {
    width: calc(100% - 180px);
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 80px;
    opacity: 0;

    animation: postmain .75s forwards;
    animation-delay: .25s;
  }

  @keyframes postmain {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .postmain-primary {
    width: calc(100% - 300px - 40px);
    display: flex;
    flex-direction: column;
  }

  .postmain-sidebar {
    width: 300px;
  }

  /* -- POST MAIN ------------ END -- */
  /* -------------------------------- */
  /* -- TEXTBLOCK ------------------- */

  .post-textblock {
    padding: 0 20px;
  }

  .post-textblock p {
    all: unset;
    display: block;
    font-size: 1.125rem;
    line-height: 1.4;
    white-space: pre-line;
  }
   
  /* -- TEXTBLOCK ------------ END -- */
  /* -------------------------------- */
  /* -- PLAYER CARD ----------------- */

  .post-playercard {
    width: 100%;
    min-height: 440px;

    background-color: var(--primary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: 30px;
    overflow: hidden;

    color: var(--background-accent);

    cursor: default;
  }

  .post-playercard-overlay {
    min-height: 440px;
    width: 100%;

    box-sizing: border-box;
    padding: 36px 40px;

    background-color: var(--primary-90);
  }

  .post-playercard-grid {
    min-height: 368px;

    display: grid;

    grid-template-columns:
      140px
      minmax(0, 1.7fr)
      minmax(210px, 0.9fr);

    grid-template-rows:
      150px
      1fr;

    grid-template-areas:
      "logo player details"
      "ratings ratings overall";

    column-gap: 34px;
    row-gap: 26px;
  }

  .post-playercard-logo {
    grid-area: logo;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .post-playercard-logo img {
    display: block;

    width: 100%;
    max-width: 120px;
    height: 105px;

    object-fit: contain;
    object-position: left top;
  }

  .post-playercard-player {
    grid-area: player;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-width: 0;
  }

  .post-playercard-player h2 {
    all: unset;

    display: block;

    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 450;
    line-height: 0.95;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .post-playercard-playstyle {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 12px;

    border-bottom: 2px solid var(--secondary-light);
  }

  .post-playercard-playstyle span {
    color: var(--background-accent-60);

    font-size: 0.8rem;
    font-weight: 450;
    text-transform: uppercase;
  }

  .post-playercard-playstyle strong {
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
  }

  .post-playercard-details {
    grid-area: details;

    display: grid;
    grid-template-columns: 1fr;

    align-self: stretch;
    padding-left: 34px;
  }

  .post-playercard-detail {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 16px;

    border-bottom: 1px solid var(--background-accent-20);
  }

  .post-playercard-detail:last-child {
    border-bottom: 0;
  }

  .post-playercard-detail span {
    color: var(--background-accent-60);

    font-size: 0.68rem;
    font-weight: 450;
    text-transform: uppercase;
  }

  .post-playercard-detail strong {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .post-playercard-ratings {
    grid-area: ratings;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }

  .post-playercard-rating {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 24px;

    border-right: 1px solid var(--background-accent-20);
    border-bottom: 1px solid var(--background-accent-20);
  }

  .post-playercard-rating:nth-child(3n) {
    border-right: 0;
  }

  .post-playercard-rating:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .post-playercard-rating:nth-child(3n + 1) {
    padding-left: 0;
  }

  .post-playercard-rating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .post-playercard-rating-header span {
    color: var(--background-accent-80);

    font-size: 0.95rem;
    font-weight: 450;
  }

  .post-playercard-rating-header strong {
    font-size: 2rem;
    font-weight: 450;
    line-height: 1;
  }

  .post-playercard-rating-track {
    width: 100%;
    height: 2px;

    margin-top: 18px;

    background-color: var(--background-accent-10);
    overflow: hidden;
  }

  .post-playercard-rating-track span {
    display: block;

    width: var(--rating);
    height: 100%;

    background-color: var(--secondary-light);
  }

  .post-playercard-overall {
    grid-area: overall;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-width: 0;

    padding-left: 34px;

    border-left: 1px solid var(--background-accent-20);
  }

  .post-playercard-overall-label {
    color: var(--background-accent-60);

    font-size: 1.3rem;
    font-weight: 450;
    text-transform: uppercase;
  }

  .post-playercard-overall-value {
    margin-top: 16px;

    font-size: clamp(4.5rem, 6vw, 6.5rem);
    font-weight: 450;
    line-height: 0.8;
  }

  .post-playercard-overall-max {
    margin-top: 12px;

    color: var(--background-accent-40);

    font-size: 0.65rem;
    text-transform: uppercase;
  }

  .post-playercard-overall-track {
    width: 100%;
    height: 2px;

    margin-top: 24px;

    background-color: var(--background-accent-10);
    overflow: hidden;
  }

  .post-playercard-overall-track span {
    display: block;

    width: var(--rating);
    height: 100%;

    background-color: var(--secondary-light);
  }

  /* -- PLAYER CARD ---------- END -- */
  /* -------------------------------- */
  /* -- POST SEPERATORS ------------- */

  section.post-seperator.full {
    display: block;
    height: 60px;
    width: 60px;
    flex-shrink: 0;
  }

  section.post-seperator.full-line {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 119px;
    width: calc(100% - 40px);
    padding: 0 20px;
    flex-shrink: 0;
  }

  .post-seperator.full-line .line {
    width: 100%;
    height: 1px;
    background: var(--primary-10);
    background: linear-gradient(90deg, var(--primary-0) 0%, var(--primary-20) 50%, var(--primary-0) 100%);
  }

  section.post-seperator.half {
    display: block;
    height: 30px;
    width: 30px;
    flex-shrink: 0;
  }

  section.post-seperator.minimal {
    display: block;
    height: 20px;
    width: 20px;
    flex-shrink: 0;
  }

  /* -- POST SEPERATORS ------ END -- */
  /* -------------------------------- */
  /* -- POST TITLES ----------------- */

  section.post-primarytitle {
    width: calc(100% - 40px);
    padding: 0 20px;
  }

  section.post-primarytitle h2 {
    all: unset;
    font-size: 1.4rem;
  }

  /* -- POST TITLES ---------- END -- */
  /* -------------------------------- */
  /* -- LISTBLOCK ------------------- */

  .post-listblock {
    width: calc(100% - 60px);
    padding: 0 30px;
  }

  .post-listblock ul,
  .post-listblock ol {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
  }

  .post-listblock li {
    position: relative;
    padding-left: 30px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .post-listblock ul li::before {
    content: "⚹";
    position: absolute;
    left: 0;
    top: 0;
  }

  .post-listblock ol {
    counter-reset: list-counter;
  }

  .post-listblock ol li {
    counter-increment: list-counter;
  }

  .post-listblock ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
  }

  .post-listblock li strong {
    font-size: inherit;
    line-height: inherit;
  }
   
  /* -- LISTBLOCK ------------ END -- */
  /* -------------------------------- */

/* -- POST ----------------- END -- */
/* -------------------------------- */
/* -- ABOUT ----------------------- */

.abouthero {
  height: calc(100vh - 40px);
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 20px;
  border-radius: 40px;
  overflow: hidden;
}

.abouthero-overlay {
  height: calc(100%);
  width: calc(100%);
  position: relative;
  background-color: var(--primary-10);
}

.abouthero-person {
  width: 20%;
  aspect-ratio: 850/1075;
  position: absolute;
  right: 40px;
  bottom: 50%;
  transform: translateY(calc(50% + 75px - 5px));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 99;
  transition: all ease .5s;
}

/* -- ABOUT ---------------- END -- */
/* -------------------------------- */