.t2p-single {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: Inter, system-ui, sans-serif;
  color: #1f2937;
}

.t2p-breadcrumb {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 30px;
}

.t2p-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding: 50px;
  border-radius: 20px;
}

.t2p-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.t2p-subtitle {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 20px;
}

.t2p-rating {
  font-size: 14px;
  margin-bottom: 25px;
}

.t2p-badge {
  background: #16a34a;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 10px;
}

.t2p-cta {
  display: inline-block;
  background: #15803d;
  color: white;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
}

.t2p-guarantee {
  margin-top: 10px;
  font-size: 14px;
  color: #15803d;
}

.t2p-hero-right img {
  width: 100%;
  border-radius: 16px;
}

.t2p-example {
  margin-top: 80px;
}

.t2p-example-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.t2p-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 14px;
}

.t2p-box.highlight {
  background: #ecfdf5;
  border: 2px solid #86efac;
}

.t2p-arrow {
  font-size: 30px;
  font-weight: bold;
}

.t2p-prompts {
  margin-top: 80px;
}

.t2p-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.t2p-testimonial {
  margin-top: 90px;
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
}

.t2p-testimonial blockquote {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.t2p-author {
  font-size: 14px;
  color: #374151;
  margin-bottom: 25px;
}

.t2p-footer-note {
  margin-top: 15px;
  font-size: 13px;
  color: #6b7280;
}


/*archive prompt*/ /* ===========================
   ARCHIVE GRID
=========================== */

.t2p-archive {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  font-family: Inter, system-ui, sans-serif;
}

.t2p-archive-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.t2p-archive-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.t2p-archive-hero p {
  font-size: 18px;
  color: #4b5563;
}

.t2p-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

/* CARD */

.t2p-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.t2p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.t2p-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #16a34a;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.t2p-card-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.t2p-card-body {
  padding: 25px;
}

.t2p-card-body h2 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.t2p-card-excerpt {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

.t2p-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t2p-price {
  font-size: 20px;
  font-weight: 700;
  color: #15803d;
}

.t2p-card-btn {
  font-size: 14px;
  font-weight: 600;
  color: #15803d;
  text-decoration: none;
}

.t2p-card-btn:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 640px) {
  .t2p-archive-hero h1 {
    font-size: 34px;
  }
}



.t2p-locked {
  max-width: 700px;
  margin: 60px auto;
  padding: 30px;
  background: #fef2f2;
  border-left: 5px solid #dc2626;
  border-radius: 14px;
  text-align: center;
  font-size: 16px;
}


/**/
/* =========================
   PROMPT BOX + COPY BUTTON
========================= */

.t2p-prompt {
  position: relative;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.t2p-prompt pre {
  white-space: pre-wrap;
  font-family: ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.t2p-copy {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #15803d;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.t2p-copy.copied {
  background: #065f46;
}
