/*-- -------------------------- -->
<---        Step-by-Step Guide   -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #guide-1234 {
    padding: var(--sectionPadding);
    padding-top: 250px;
  }
  #guide-1234 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  #guide-1234 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #guide-1234 .cs-title {
    max-width: 20ch;
  }
  #guide-1234 .cs-steps-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #guide-1234 .cs-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  #guide-1234 .cs-step-number {
    width: 3.75rem;
    height: 3.75rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  #guide-1234 .cs-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #guide-1234 .cs-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #guide-1234 .cs-step-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    max-width: 31.25rem;
  }
  #guide-1234 .cs-step-image {
    width: 100%;
    max-width: 18.75rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  #guide-1234 .cs-step-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  #guide-1234 .cs-benefits {
    width: 100%;
    max-width: 37.5rem;
    text-align: center;
  }
  #guide-1234 .cs-benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 2rem 0;
    color: var(--headerColor);
  }
  #guide-1234 .cs-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  #guide-1234 .cs-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #f7f7f7;
    border-radius: 0.5rem;
    text-align: left;
  }
  #guide-1234 .cs-benefit-item span {
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    font-weight: 500;
  }
  #guide-1234 .cs-benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #guide-1234 .cs-steps-wrapper {
    gap: 4rem;
  }
  #guide-1234 .cs-step {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  #guide-1234 .cs-step:nth-child(even) {
    flex-direction: row-reverse;
  }
  #guide-1234 .cs-step-content {
    align-items: flex-start;
    flex: 1;
  }
  #guide-1234 .cs-step-image {
    max-width: 25rem;
    flex-shrink: 0;
  }
  #guide-1234 .cs-benefits-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #guide-1234 .cs-benefit-item {
    flex: 1;
    min-width: 15.625rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #guide-1234 .cs-step {
    gap: 3rem;
  }
  #guide-1234 .cs-step-image {
    max-width: 31.25rem;
  }
  #guide-1234 .cs-benefits-list {
    flex-direction: row;
    gap: 1.5rem;
  }
  #guide-1234 .cs-benefit-item {
    flex: 1;
    min-width: auto;
  }
}
