.service-eap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 0;
}
.service-eap-item {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--color-main);
  transition: all .3s ease;
}
.service-eap-item:hover {
  background: var(--color-main);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210,184,93,.25);
}
.service-eap-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-main);
}
.service-eap-item:hover h3 {
  color: #000;
}
.service-eap-item p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  color: var(--color-main);
}
.service-eap-item:hover p {
  color: #000;
}
@media (max-width: 768px) {
  .service-eap-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-eap-item {
    padding: 20px 16px;
  }
  .service-eap-item h3 {
    font-size: 1.6rem;
  }
  .service-eap-item p {
    font-size: 1.6rem;
  }
}

/* case grid */
.eapz {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.eap {
  width: calc((100% - 48px) / 4) !important;
  padding: 0 !important;
  background: #f8f9fc;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
.eap:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.eap .component-getnews {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.eap .component-getnews__thumbnail {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.eap .component-getnews__thumbnail-inner {
  width: 100%;
  height: 100%;
}
.eap .component-getnews__thumbnail-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.eap:hover .component-getnews__thumbnail-inner img {
  transform: scale(1.08);
}
.eap .component-getnews__text {
  padding: 14px 14px 16px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eap .component-getnews__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-main);
  text-align: center;
  line-height: 1.4;
}
.eap:hover .component-getnews__title {
  color: #000;
}
@media (max-width: 992px) {
  .eapz { gap: 14px; }
  .eap { width: calc((100% - 28px) / 3) !important; }
}
@media (max-width: 640px) {
  .eapz { gap: 10px; }
  .eap { width: calc((100% - 10px) / 2) !important; }
  .eap .component-getnews__text { padding: 10px 8px 12px; }
  .eap .component-getnews__title { font-size: 1.2rem; }
}
