/* Copyright 2026 John G Stroh. All rights reserved. */
/* protected-by.css — styling for the reusable "Protected by design" block (protected-by.js). */
.protected-by {
  max-width: 760px;
  margin: 2.5rem auto;
  padding: 1.75rem 1.75rem 1.5rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-left: 4px solid #0d9488;
  border-radius: 0 12px 12px 0;
}
.protected-by-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f766e;
  margin: 0 0 0.4rem;
}
.protected-by-hook {
  font-size: 1.2rem;
  font-weight: 700;
  color: #134e4a;
  margin: 0 0 1.1rem;
  line-height: 1.35;
}
.protected-by-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.protected-by-list li {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 0.6rem;
  align-items: baseline;
}
@media (max-width: 560px) {
  .protected-by-list li { grid-template-columns: 1fr; gap: 0.15rem; }
}
.protected-by-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0d9488;
  padding-top: 0.1rem;
}
.protected-by-text {
  color: #1f2937;
  font-size: 0.95rem;
  line-height: 1.55;
}
.protected-by-more {
  display: inline-block;
  color: #0d9488;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.protected-by-more:hover, .protected-by-more:focus-visible { text-decoration: underline; }
