/* Nav subscribe button */
.nav-subscribe-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-subscribe-btn:hover { background: var(--accent-warm); }

/* Content Studio page styles */

.studio {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem var(--pad-x) 4rem;
}

.studio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.studio-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0.75rem 0;
}

.studio-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0.5rem auto 0;
  line-height: 1.65;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea {
  font-size: 0.82rem;
  min-height: 200px;
}

.btn-primary {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-warm);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Results */
.studio-results-col {
  position: sticky;
  top: 80px;
}

.results-placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.placeholder-icon {
  color: var(--border);
  margin-bottom: 1rem;
}

.placeholder-sub {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.results-meta {
  margin-bottom: 1.25rem;
}

.results-meta-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.days-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.day-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.day-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.post-card {
  border: 1px solid;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.post-card:last-child {
  margin-bottom: 0;
}

.post-platform {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}

.post-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg);
  white-space: pre-wrap;
}

.post-image-prompt {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.prompt-label {
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  margin-right: 0.25rem;
}

/* Post actions / share */
.post-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, color 0.15s, border-color 0.15s;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
}

.share-btn:hover {
  background: var(--border);
  transform: translateY(-1px);
}

.share-platform { cursor: pointer; }
.share-instagram { background: #e1306c; color: #fff; border-color: #e1306c; }
.share-instagram:hover { background: #c1225f; }
.share-facebook { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-facebook:hover { background: #155db5; }

/* Footer */
.studio-footer {
  text-align: center;
  padding: 2rem var(--pad-x);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.studio-footer a {
  color: var(--accent);
  text-decoration: none;
}

.studio-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .studio-grid {
    grid-template-columns: 1fr;
  }
  .studio-results-col {
    position: static;
  }
}

@media (max-width: 600px) {
  .studio { padding: 2rem var(--pad-x) 3rem; }
  .card { padding: 1.25rem; }
}