/*-- -------------------------- -->
<---          Players           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .players-56 {
    padding: var(--sectionPadding);
  }
  .players-56 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
    /* 60px - 108px */
    column-gap: clamp(3.7rem, 8vw, 6.75rem);
  }
  .players-56 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
  }
  .players-56 .cs-text {
    margin-bottom: 2rem;
  }
  .players-56 .cs-review {
    /* 15px - 17px */
    font-size: clamp(15px, 5vw, 1.0625rem);
    line-height: 1.5em;
    margin: 0 auto;
    /* 28px - 32px */
    margin-bottom: clamp(1.75rem, 0.5vw, 2rem);
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: var(--headerColor);
    /* Prevents padding from affecting height & width */
    box-sizing: border-box;
    position: relative;
  }
  .players-56 .cs-review:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0.3125rem;
    background: var(--primaryLight);
    opacity: 1;
    top: 0;
    left: 0;
  }
  .players-56 .cs-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0.75rem 0 0;
    display: block;
    color: var(--headerColor);
  }
  .players-56 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  .players-56 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  .players-56 .cs-button-solid:hover:before {
    width: 100%;
  }
  .players-56 .cs-picture {
    width: 98%;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height 320/340 */
    aspect-ratio: 320/340;
    /* 8px - 12px */
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
  }
  .players-56 .cs-picture:before {
    content: "";
    position: absolute;
    height: 12.125rem;
    width: 12.125rem;
    background: var(--primaryLight);
    opacity: 1;
    /* -8px to -12px */
    /* the calc function sets the clamp value to a negative number */
    top: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
    left: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
  }
  .players-56 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .players-56 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .players-56 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  .players-56 .cs-picture {
    /* 336px - 530px */
    width: clamp(21rem, 44vw, 33.125rem);
    /* 534px - 641px */
    height: clamp(33.375rem, 58.6vw, 40.0625rem);
    /* reset margin to account for the pesudo element square positioning */
    margin: 0.75rem 0 0 0.75rem;
    margin-right: 0;
    margin-bottom: 0;
    /* no longer need aspect ratio */
    aspect-ratio: initial;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .players-57 {
    padding: var(--sectionPadding);
  }
  .players-57 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
    /* 60px - 108px */
    column-gap: clamp(3.7rem, 8vw, 6.75rem);
  }
  .players-57 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
  }
  .players-57 .cs-text {
    margin-bottom: 2rem;
  }
  .players-57 .cs-review {
    /* 15px - 17px */
    font-size: clamp(15px, 5vw, 1.0625rem);
    line-height: 1.5em;
    margin: 0 auto;
    /* 28px - 32px */
    margin-bottom: clamp(1.75rem, 0.5vw, 2rem);
    padding: 0.75rem 0 0.75rem 1.5rem;
    color: var(--headerColor);
    /* Prevents padding from affecting height & width */
    box-sizing: border-box;
    position: relative;
  }
  .players-57 .cs-review:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0.3125rem;
    background: var(--primaryLight);
    opacity: 1;
    top: 0;
    left: 0;
  }
  .players-57 .cs-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0.75rem 0 0;
    display: block;
    color: var(--headerColor);
  }
  .players-57 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  .players-57 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  .players-57 .cs-button-solid:hover:before {
    width: 100%;
  }
  .players-57 .cs-picture {
    width: 98%;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height 320/340 */
    aspect-ratio: 0.94117647;
    /* 8px - 12px */
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
  }
  .players-57 .cs-picture:before {
    content: "";
    position: absolute;
    height: 12.125rem;
    width: 12.125rem;
    background: var(--primaryLight);
    opacity: 1;
    /* -8px to -12px */
    /* the calc function sets the clamp value to a negative number */
    top: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
    right: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
  }
  .players-57 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .players-57 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  .players-57 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  .players-57 .cs-picture {
    /* 336px - 530px */
    width: clamp(21rem, 44vw, 33.125rem);
    /* 534px - 641px */
    height: clamp(33.375rem, 58.6vw, 40.0625rem);
    /* reset margin to account for the pseudo element square positioning */
    margin: 0.75rem 0.75rem 0 0;
    margin-right: 0;
    margin-bottom: 0;
    /* no longer need aspect ratio */
    aspect-ratio: initial;
    /* prevents flexbox from squishing it */
    flex: none;
    /* sends it to the right in the second position */
    order: 2;
  }
}

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