.apt-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
}

.apt-banner__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 44px 12px 14px;
}

.apt-banner__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  z-index: 2;
}

.apt-banner__icon-wrap {
  width: 44px;
  aspect-ratio: 1 / 1;
  flex: 0 0 44px;
}

.apt-banner__icon {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.apt-banner__content {
  flex: 1;
  min-width: 0;
}

.apt-banner__text {
  font-size: 14px;
  line-height: 1.4;
  color: #111827;
  overflow: hidden;
  display: block;
  max-height: 2.8em;
  word-break: break-word;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.apt-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  flex: 0 0 auto;
  margin-top: 2px;
}

@media (min-width: 782px) {
  .apt-banner {
    display: none;
  }
}
