.coaching-works-container {
  display: flex;
  gap: 4.3077rem;
  align-items: stretch;
  border-radius: var(--border-radius-24);
  overflow: hidden;
}

/* Left */
.coaching-works {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Right */
.coaching-works-image {
  flex: 0 0 45%;
  max-width: 45%;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-16);
  background-repeat: no-repeat;
}

/* Title */
.coaching-works-title {
  font-family: var(--font-canela) !important;
  font-weight: var(--font-weight-700);
  font-style: Bold;
  font-size: var(--font-size-40);
  line-height: 100%;
  color: rgba(31, 41, 55, 1);
  margin-bottom: var(--mp32);
}

.coaching-works-detail {
  display: flex;
  flex-direction: column;
  gap: var(--mp24);
}

.coaching-works-item {
  display: flex;
  align-items: flex-start;
  gap: var(--mp12);
}

.coaching-works-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-top: 0.2rem;
}

.coaching-works-text h4 {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height-32);
  color: rgba(55, 65, 81, 1);
}

.coaching-works-action {
  margin-top: var(--mp32);
}

.coaching-works-button {
  height: 60px;
  padding: 1.2307rem 7.6153rem;
  font-weight: var(--font-weight-500);
  font-size: var(--font-size-18);
  line-height: var(--line-height-28);
}

@media (max-width: 1024px) {
  .coaching-works-container {
    flex-direction: column;
    gap: 2rem;
  }

  .coaching-works-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-16);
    order: 1;
  }

  .coaching-works {
    flex: none;
    max-width: 100%;
    width: 100%;
    order: 2;
  }
}

@media (max-width: 768px) {
  .coaching-works-title {
    font-size: var(--font-size-30);
    margin-bottom: var(--mp24);
  }

  .coaching-works-text h4 {
    font-size: var(--font-size-20);
    line-height: var(--line-height-28);
  }

  .coaching-works-button {
    width: 100%;
    padding: 1rem;
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
  }
}

@media (max-width: 480px) {
  .coaching-works-icon img {
    width: 24px;
    height: 24px;
  }

  .coaching-works-text h4 {
    font-size: var(--font-size-18);
    line-height: var(--line-height-24);
  }

  .coaching-works-button {
    height: 48px;
    font-size: var(--font-size-14);
  }
}