.poi-share-card {
  padding: clamp(20px, 2.6vw, 32px);
  border: 1px solid #dfe6ee;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  box-shadow: 0 12px 32px rgba(24, 43, 80, 0.08);
}

.poi-share__header {
  margin-bottom: 20px;
}

.poi-share__eyebrow {
  margin-bottom: 6px;
  color: #25479d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.poi-share__header h2 {
  color: #2a2c2f;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.3;
}

.poi-share__header > p:last-child {
  margin-top: 8px;
  color: #9ea6ac;
  line-height: 1.55;
}

.poi-share__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.poi-share__actions[hidden],
.poi-share__action[hidden] {
  display: none;
}

.poi-share__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid #25479d;
  border-radius: 12px;
  background: #fff;
  color: #25479d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.poi-share__action:only-child {
  grid-column: 1 / -1;
}

.poi-share__action--native[hidden] + .poi-share__action--copy {
  grid-column: 1 / -1;
}

.poi-share__action--native {
  background: #25479d;
  color: #fff;
}

.poi-share__action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poi-share__action:hover,
.poi-share__action:focus-visible {
  background: #f5f8ff;
}

.poi-share__action--native:hover,
.poi-share__action--native:focus-visible {
  background: #1e3a80;
}

.poi-share__action:disabled {
  cursor: wait;
  opacity: 0.65;
}

.poi-share__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.poi-share__provider {
  display: flex;
  min-height: 104px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  padding: 12px 6px;
  border: 1px solid #dfe6ee;
  border-radius: 14px;
  background: #fff;
  color: #2a2c2f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.poi-share__provider:hover,
.poi-share__provider:focus-visible {
  border-color: #25479d;
  box-shadow: 0 8px 20px rgba(37, 71, 157, 0.12);
  transform: translateY(-2px);
}

.poi-share__provider:focus-visible,
.poi-share__action:focus-visible,
.poi-share__more summary:focus-visible,
.poi-share__address input:focus-visible {
  outline: 3px solid rgba(37, 71, 157, 0.28);
  outline-offset: 2px;
}

.poi-share__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2f7;
  color: #243248;
}

.poi-share__icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.poi-share__provider--naver .poi-share__icon,
.poi-share__provider--naver-blog .poi-share__icon,
.poi-share__provider--band .poi-share__icon,
.poi-share__provider--line .poi-share__icon,
.poi-share__provider--whatsapp .poi-share__icon {
  background: #e7f7ef;
  color: #16864e;
}

.poi-share__provider--facebook .poi-share__icon,
.poi-share__provider--telegram .poi-share__icon,
.poi-share__provider--linkedin .poi-share__icon,
.poi-share__provider--bluesky .poi-share__icon {
  background: #edf4ff;
  color: #2863bd;
}

.poi-share__provider--pinterest .poi-share__icon {
  background: #fff0f2;
  color: #bd081c;
}

.poi-share__more {
  margin-top: 14px;
  border-top: 1px solid #dfe6ee;
}

.poi-share__more summary {
  min-height: 48px;
  padding: 15px 4px;
  color: #2a2c2f;
  font-weight: 700;
  cursor: pointer;
}

.poi-share__more[open] summary {
  margin-bottom: 12px;
}

.poi-share__address {
  margin-top: 20px;
}

.poi-share__address label {
  display: block;
  margin-bottom: 8px;
  color: #2a2c2f;
  font-weight: 700;
}

.poi-share__address input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #c9d3e3;
  border-radius: 10px;
  background: #f7f9fc;
  color: #31425d;
  font: inherit;
  letter-spacing: 0;
}

.poi-share__notice {
  margin-top: 12px;
  color: #7c8796;
  font-size: 13px;
  line-height: 1.65;
}

.poi-share__status {
  min-height: 1.5em;
  margin-top: 8px;
  color: #25479d;
  font-size: 13px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .poi-share-card {
    padding: 20px 14px;
    border-radius: 18px;
  }

  .poi-share__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .poi-share__provider {
    min-height: 92px;
    padding: 10px 4px;
    font-size: 12px;
  }

  .poi-share__icon {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 360px) {
  .poi-share__actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .poi-share__provider {
    transition: none;
  }
}

@media print {
  .poi-share-section {
    display: none !important;
  }
}
