.panchang-share-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid #f5cdb9;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 92, 0, 0.12), transparent 34%),
    #fffaf6;
}

.panchang-share-panel__eyebrow {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: #d85b00;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panchang-share-panel h5 {
  margin-bottom: 0.35rem;
  color: #172033;
  font-weight: 800;
}

.panchang-share-panel p {
  margin-bottom: 0;
  color: #667085;
  font-size: 0.95rem;
}

.panchang-share-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.panchang-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #ffd6bf;
  border-radius: 999px;
  background: #fff;
  color: #9f3900;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.panchang-share-btn:hover,
.panchang-share-btn--primary {
  border-color: #ff5c00;
  background: #ff5c00;
  color: #fff;
}

@media (max-width: 767.98px) {
  .panchang-share-panel {
    grid-template-columns: 1fr;
  }

  .panchang-share-panel__actions {
    justify-content: flex-start;
  }

  .panchang-share-btn {
    flex: 1 1 calc(50% - 0.55rem);
  }
}
