.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.three-grid .col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .three-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* body-2024 c-05 줄간격 지정 */
.body-2024.c-05 {
  line-height: 1.4;
}

/* Mobile: small screens */
@media screen and (max-width: 479px) {
  .three-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .three-grid .col {
    gap: 6px;
  }
  .h1-2024 {
    font-size: 28px;
    line-height: 1.1;
  }
  .body-2024.c-05 {
    line-height: 1.4;
    font-size: 14px;
  }
  .el-2024-section2 img.view {
    width: 100%;
    height: auto;
  }

  /* Shaft image defaults moved into mobile media query to avoid affecting desktop */
  .el-2024-section4 .el-2024-card.big img.shaft-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0px;
    transform: translate(0) rotate(-90deg) !important;
    top: auto !important;
    left: auto !important;
    position: relative !important;
  }
  .el-2024-card.big img {
    margin-bottom: 0px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    position: relative !important;
  }
  .el-2024-card.big {
    height: auto;
  }
}
