.pran-article-notice {
  --pran-bg: #f7f8fb;
  --pran-border: #dfe3ea;
  --pran-accent: #111827;
  --pran-text: #3f4652;
  --pran-button-bg: #111827;
  --pran-button-text: #ffffff;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 20px;
  padding: 22px 24px;
  color: var(--pran-text);
  background: var(--pran-bg);
  border: 1px solid var(--pran-border);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(20, 27, 40, 0.06);
  overflow: hidden;
}

.pran-article-notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--pran-accent);
}

.pran-notice-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 1px;
  font-size: 22px;
  line-height: 1;
  background: #ffffff;
  border: 1px solid var(--pran-border);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(20, 27, 40, 0.06);
}

.pran-notice-main {
  min-width: 0;
  flex: 1;
}

.pran-notice-content {
  font-size: 15px;
  line-height: 1.8;
}

.pran-notice-content > :first-child {
  margin-top: 0;
}

.pran-notice-content > :last-child {
  margin-bottom: 0;
}

.pran-notice-content p {
  margin: 0 0 10px;
}

.pran-notice-content ul,
.pran-notice-content ol {
  margin: 10px 0 0;
  padding-inline-start: 22px;
}

.pran-notice-content a:not(.pran-notice-button) {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pran-notice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin-top: 15px;
  padding: 10px 17px;
  color: var(--pran-button-text) !important;
  background: var(--pran-button-bg);
  border: 1px solid var(--pran-button-bg);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.pran-notice-button:hover,
.pran-notice-button:focus-visible {
  color: var(--pran-button-text) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 27, 40, 0.18);
}

.pran-notice-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pran-button-bg) 28%, transparent);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .pran-article-notice {
    gap: 12px;
    margin-bottom: 16px;
    padding: 18px 17px 18px 19px;
    border-radius: 14px;
  }

  .pran-notice-icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
    border-radius: 10px;
  }

  .pran-notice-content {
    font-size: 14px;
    line-height: 1.75;
  }

  .pran-notice-button {
    width: 100%;
    box-sizing: border-box;
  }
}
