/*-- -------------------------- -->
<---     About Student Council  -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
  #about-sc {
    padding: var(--sectionPadding);
    background: var(--white);
  }

  #about-sc .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  #about-sc .cs-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #about-sc .cs-text {
    color: var(--charcoal);
    opacity: 0.75;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  #about-sc .cs-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  #about-sc .cs-feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
  }

  #about-sc .cs-feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #about-sc .cs-image-group {
    position: relative;
    width: 100%;
  }

  #about-sc .cs-picture-main {
    display: block;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
  }

  #about-sc .cs-picture-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  #about-sc .cs-floater {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--navy);
    border-radius: 0.625rem;
    padding: 0.875rem 1.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  }

  #about-sc .cs-floater-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--signingGold);
    line-height: 1em;
  }

  #about-sc .cs-floater-unit {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.125rem;
  }

  #about-sc .cs-floater-label {
    font-size: 0.625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    margin-top: 0.25rem;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #about-sc .cs-container {
    flex-direction: row;
    align-items: center;
    gap: 3.75rem;
  }

  #about-sc .cs-content {
    flex: 1;
  }

  #about-sc .cs-image-group {
    flex: 0 0 26.25rem;
    width: 26.25rem;
  }

  #about-sc .cs-picture-main img {
    height: 28.75rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #about-sc {
    padding: clamp(3rem, 6vw, 5rem) 4vw clamp(3rem, 6vw, 5rem) 3rem;
  }

  #about-sc .cs-container {
    gap: 5rem;
    max-width: 100%;
  }

  #about-sc .cs-image-group {
    flex: 0 0 30rem;
    width: 30rem;
  }

  #about-sc .cs-picture-main img {
    height: 31.25rem;
  }
}

/*-- -------------------------- -->
<---         What We Do          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
  #what-we-do-sc {
    padding: var(--sectionPadding);
    background: var(--navy);
    position: relative;
  }

  #what-we-do-sc .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  #what-we-do-sc .cs-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #what-we-do-sc .cs-topper {
    color: var(--signingGold);
  }

  #what-we-do-sc .cs-title {
    color: var(--white);
  }

  #what-we-do-sc .cs-text {
    color: rgba(255, 255, 255, 0.55);
    max-width: 35rem;
    text-align: center;
  }

  #what-we-do-sc .cs-card-group {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #what-we-do-sc .cs-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: background 0.22s ease, border-color 0.22s ease;
  }

  #what-we-do-sc .cs-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 67, 0.25);
  }

  #what-we-do-sc .cs-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.625rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #what-we-do-sc .cs-h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3em;
    margin: 0;
  }

  #what-we-do-sc .cs-item-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #what-we-do-sc .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #what-we-do-sc .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*-- -------------------------- -->
<---         How to Join        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
  #how-to-join-sc {
    padding: var(--sectionPadding);
    background: var(--white);
  }

  #how-to-join-sc .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }

  #how-to-join-sc .cs-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #how-to-join-sc .cs-title {
    margin-bottom: 0.75rem;
  }

  #how-to-join-sc .cs-title-line {
    width: 3rem;
    height: 0.1875rem;
    background: var(--signingGold);
    border-radius: 0.125rem;
  }

  #how-to-join-sc .cs-step-group {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #how-to-join-sc .cs-step {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  #how-to-join-sc .cs-step-num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  #how-to-join-sc .cs-h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
  }

  #how-to-join-sc .cs-step-text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--silver);
    margin: 0;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #how-to-join-sc .cs-step-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #how-to-join-sc .cs-step-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
