@charset "UTF-8";
/**
 * AI 온보드 파쇄트럭 페이지 SCSS
 */
/* ========================================
   Sub Tabs (탭메뉴)
   ======================================== */
.sub-tabs {
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #e1e1e4;
}
.sub-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .sub-tabs-inner {
    overflow-x: auto;
    gap: 2px;
  }
  .sub-tabs-inner::-webkit-scrollbar {
    display: none;
  }
}

.sub-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  color: #505050;
  text-decoration: none;
  border: 0;
  border-bottom: 2px solid transparent;
  height: 100%;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.sub-tab-item:hover {
  color: #367cfe;
}
.sub-tab-item.active {
  color: #367cfe;
  font-weight: 700;
  border-bottom-color: #367cfe;
}
@media only screen and (max-width: 767px) {
  .sub-tab-item {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
}

/* ========================================
   AI Truck Content
   ======================================== */
.ai-truck-content {
  padding-top: 5rem;
  padding-bottom: 10rem;
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-content {
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
    gap: 4.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-content {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
    gap: 3.75rem;
  }
}

/* ========================================
   Header Section
   ======================================== */
.ai-truck-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-header {
    gap: 0.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-header {
    gap: 0.25rem;
  }
}
.ai-truck-header__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 0.25rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-header__symbol {
    padding: 0.125rem;
  }
}
.ai-truck-header__symbol .symbol-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-header__symbol .symbol-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-header__symbol .symbol-icon {
    width: 2rem;
    height: 2rem;
  }
}
.ai-truck-header__symbol .symbol-icon img {
  width: 2.113rem;
  height: 2.113rem;
  display: block;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-header__symbol .symbol-icon img {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-header__symbol .symbol-icon img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.ai-truck-header__symbol .symbol-icon img:first-child {
  position: relative;
  z-index: 1;
}
.ai-truck-header__symbol .symbol-icon-rotate {
  position: absolute;
  left: 0.41rem;
  top: 0.387rem;
  transform: rotate(180deg);
  z-index: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-header__symbol .symbol-icon-rotate {
    left: 0.35rem;
    top: 0.35rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-header__symbol .symbol-icon-rotate {
    left: 0.28rem;
    top: 0.28rem;
  }
}

.ai-truck-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-title {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-title {
    font-size: 1.625rem;
  }
}

.ai-truck-description {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #505050;
  margin: 0;
  max-width: 80rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-description {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-description {
    font-size: 1rem;
  }
}

/* ========================================
   Main Section - Truck Images & Modules
   ======================================== */
.ai-truck-main {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-main {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-main {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.truck-images {
  flex: 0 0 45.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images {
    flex: 0 0 55%;
  }
}
@media only screen and (max-width: 767px) {
  .truck-images {
    flex: 1;
    width: 100%;
  }
}
.truck-images .truck-main-image {
  position: relative;
  width: 100%;
  height: 29.813rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images .truck-main-image {
    height: 25rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-main-image {
    height: 18.75rem;
  }
}
.truck-images .truck-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.truck-images .truck-main-image .truck-numbers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.truck-images .truck-main-image .truck-numbers .number-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #367cfe;
  border-radius: 2.5rem;
  padding: 0.375rem 0.75rem;
  font-family: "Pretendard", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  box-shadow: 0 0 0 0.625rem rgba(54, 124, 254, 0.23);
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images .truck-main-image .truck-numbers .number-badge {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.625rem;
    box-shadow: 0 0 0 0.5rem rgba(54, 124, 254, 0.23);
  }
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-main-image .truck-numbers .number-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 0 0 0.375rem rgba(54, 124, 254, 0.23);
  }
}
.truck-images .truck-sub-images {
  display: flex;
  gap: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-sub-images {
    gap: 0.5rem;
  }
}
.truck-images .truck-sub-images .sub-image {
  height: 11.438rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #eff2f6;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images .truck-sub-images .sub-image {
    height: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-sub-images .sub-image {
    height: 7.5rem;
  }
}
.truck-images .truck-sub-images .sub-image:nth-child(1) {
  flex: 1 1 0;
  min-width: 0;
}
.truck-images .truck-sub-images .sub-image:nth-child(2) {
  flex: 0 0 10.375rem;
  width: 10.375rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images .truck-sub-images .sub-image:nth-child(2) {
    flex: 0 0 9rem;
    width: 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-sub-images .sub-image:nth-child(2) {
    flex: 0 0 7rem;
    width: 7rem;
  }
}
.truck-images .truck-sub-images .sub-image:nth-child(3) {
  flex: 0 0 11.438rem;
  width: 11.438rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-images .truck-sub-images .sub-image:nth-child(3) {
    flex: 0 0 10rem;
    width: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-images .truck-sub-images .sub-image:nth-child(3) {
    flex: 0 0 7.5rem;
    width: 7.5rem;
  }
}
.truck-images .truck-sub-images .sub-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.truck-modules {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-modules {
    gap: 2rem;
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-modules {
    padding-top: 0;
    gap: 1.5rem;
  }
}
.truck-modules .module-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.truck-modules .module-header .module-label {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-modules .module-header .module-label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-header .module-label {
    font-size: 1.125rem;
  }
}
.truck-modules .module-header .module-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-modules .module-header .module-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-header .module-title {
    font-size: 1.5rem;
  }
}
.truck-modules .module-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-list {
    gap: 0.5rem;
  }
}
.truck-modules .module-list .module-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.875rem;
  background-color: #f8f8fa;
  border-radius: 1.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-modules .module-list .module-item {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-list .module-item {
    padding: 1.25rem;
  }
}
.truck-modules .module-list .module-item .module-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #367cfe;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.0625rem 0.75rem;
  border-radius: 1.938rem;
  min-width: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-list .module-item .module-number {
    font-size: 0.8125rem;
    min-width: 2.25rem;
  }
}
.truck-modules .module-list .module-item .module-name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  padding: 0 0.25rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .truck-modules .module-list .module-item .module-name {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .truck-modules .module-list .module-item .module-name {
    font-size: 1.125rem;
  }
}

/* ========================================
   Process Section
   ======================================== */
.ai-truck-process {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-process {
    gap: 1.5rem;
  }
}
.ai-truck-process .process-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ai-truck-process .process-header .process-label {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-header .process-label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-header .process-label {
    font-size: 1.125rem;
  }
}
.ai-truck-process .process-header .process-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-header .process-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-header .process-title {
    font-size: 1.375rem;
  }
}
.ai-truck-process .process-illustration {
  position: relative;
  width: 100%;
  height: 34.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #eff2f6;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-illustration {
    height: 30rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-illustration {
    height: auto;
    min-height: 25rem;
  }
}
.ai-truck-process .process-illustration .process-bg {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  padding-inline: 3.75rem;
  position: absolute;
  bottom: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-illustration .process-bg {
    height: auto;
  }
}
.ai-truck-process .process-illustration .process-step {
  position: absolute;
  background-color: #ffffff;
  border-radius: 2.5rem;
  padding: 1.875rem;
  width: 25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-illustration .process-step {
    width: 22rem;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-illustration .process-step {
    position: static;
    width: 100%;
    margin-top: 1.25rem;
    padding: 1.25rem;
  }
}
.ai-truck-process .process-illustration .process-step .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #367cfe;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.0625rem 0.75rem;
  border-radius: 1.938rem;
  width: -moz-fit-content;
  width: fit-content;
}
.ai-truck-process .process-illustration .process-step .step-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  padding: 0 0.25rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-illustration .process-step .step-title {
    font-size: 1.25rem;
  }
}
.ai-truck-process .process-illustration .process-step .step-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #767676;
  margin: 0;
  padding: 0 0.25rem;
  height: 6.563rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .ai-truck-process .process-illustration .process-step .step-desc {
    font-size: 0.8125rem;
    height: auto;
  }
}
.ai-truck-process .process-illustration .process-step.step-01 {
  top: 3.75rem;
  left: 13.75rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-illustration .process-step.step-01 {
    top: 3rem;
    left: 10rem;
  }
}
.ai-truck-process .process-illustration .process-step.step-02 {
  top: 3.75rem;
  right: 6.875rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-process .process-illustration .process-step.step-02 {
    top: 3rem;
    right: 3.75rem;
  }
}

/* ========================================
   Section Divider
   ======================================== */
.section-divider {
  border: none;
  border-top: 0.125rem solid #367CFE;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .section-divider {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-divider {
    margin: 0;
  }
}

/* ========================================
   Performance Section
   ======================================== */
.ai-truck-performance {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance {
    gap: 1.5rem;
  }
}
.ai-truck-performance .performance-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ai-truck-performance .performance-header .performance-label {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance .performance-header .performance-label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-header .performance-label {
    font-size: 1.125rem;
  }
}
.ai-truck-performance .performance-header .performance-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ai-truck-performance .performance-header .performance-title-wrap .performance-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance .performance-header .performance-title-wrap .performance-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-header .performance-title-wrap .performance-title {
    font-size: 1.375rem;
  }
}
.ai-truck-performance .performance-header .performance-title-wrap .performance-subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #767676;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance .performance-header .performance-title-wrap .performance-subtitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-header .performance-title-wrap .performance-subtitle {
    font-size: 1rem;
  }
}
.ai-truck-performance .performance-cards {
  display: flex;
  gap: 0.625rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance .performance-cards {
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-cards {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.ai-truck-performance .performance-cards .performance-card {
  flex: 1;
  background-color: #f8f8fa;
  border: 0.0625rem solid #eff2f6;
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-cards .performance-card {
    padding: 1rem;
  }
}
.ai-truck-performance .performance-cards .performance-card .performance-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  margin: 0;
  height: 2.063rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-performance .performance-cards .performance-card .performance-card-title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-cards .performance-card .performance-card-title {
    font-size: 1.125rem;
    height: auto;
  }
}
.ai-truck-performance .performance-cards .performance-card .performance-card-value {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .ai-truck-performance .performance-cards .performance-card .performance-card-value {
    font-size: 1rem;
  }
}

/* ========================================
   Features Section
   ======================================== */
.ai-truck-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features {
    gap: 1.5rem;
  }
}
.ai-truck-features .features-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-header {
    gap: 1rem;
  }
}
.ai-truck-features .features-header .features-label {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features .features-header .features-label {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-header .features-label {
    font-size: 1.125rem;
  }
}
.ai-truck-features .features-header .features-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ai-truck-features .features-header .features-title-wrap .features-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features .features-header .features-title-wrap .features-title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-header .features-title-wrap .features-title {
    font-size: 1.375rem;
  }
}
.ai-truck-features .features-header .features-title-wrap .features-subtitle {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #767676;
  height: 2.063rem;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features .features-header .features-title-wrap .features-subtitle {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-header .features-title-wrap .features-subtitle {
    font-size: 1rem;
    height: auto;
  }
}
.ai-truck-features .features-cards {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features .features-cards {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-cards {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.ai-truck-features .features-cards .feature-card {
  flex: 1;
  background-color: #f8f8fa;
  border: 0.0625rem solid #eff2f6;
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-cards .feature-card {
    padding: 1rem;
  }
}
.ai-truck-features .features-cards .feature-card .feature-point {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #367cfe;
  height: 2.063rem;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .ai-truck-features .features-cards .feature-card .feature-point {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-cards .feature-card .feature-point {
    font-size: 1.125rem;
    height: auto;
  }
}
.ai-truck-features .features-cards .feature-card .feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .ai-truck-features .features-cards .feature-card .feature-title {
    font-size: 1rem;
  }
}