/* guest_post.css */
.guest-post-wrap {
    max-width: 960px;
    margin: 20px auto 60px;
    padding: 0 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  
  .guest-post-wrap h1 {
    font-size: 2rem;
    margin: 8px 0 6px;
    font-weight: 800;
  }
  .guest-post-wrap h1 span {
    background: linear-gradient(90deg,#ff5f6d,#ea9b2d,#47cf73,#3c7eff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .guest-post-wrap .intro {
    color: #555;
    margin-bottom: 18px;
  }
  
  .gp-msg {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .gp-success { background: #eefbf0; color: #216e39; border: 1px solid #cdebd3; }
  .gp-error   { background: #ffefef; color: #8a1f1f; border: 1px solid #f3c3c3; }
  
  .guest-post-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .guest-post-form input[type="text"],
  .guest-post-form input[type="email"],
  .guest-post-form input[type="url"],
  .guest-post-form select,
  .guest-post-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow .2s, border-color .2s;
    background: #fff;
  }
  .guest-post-form textarea { line-height: 1.5; }
  .guest-post-form input:focus,
  .guest-post-form textarea:focus,
  .guest-post-form select:focus {
    border-color: #7aa7ff;
    box-shadow: 0 0 0 4px rgba(76, 132, 255, .15);
  }
  
  .gp-field, .gp-field-group { margin-bottom: 14px; }
  .gp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 760px) { .gp-grid { grid-template-columns: 1fr; } }
  
  .row-flex {
    display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
  }
  .btn-add, .btn-remove, .gp-submit {
    border: none; cursor: pointer; padding: 10px 14px;
    border-radius: 999px; font-weight: 700;
  }
  .btn-add {
    background: linear-gradient(90deg,#3c7eff,#47cf73);
    color: #fff;
  }
  .btn-remove {
    background: #eee; color: #333;
  }
  .btn-add:hover { filter: brightness(0.95); }
  .btn-remove:hover { background: #e0e0e0; }
  
  .gp-submit {
    background: linear-gradient(90deg,#ff5f6d,#47cf73,#3c7eff);
    color: #fff; font-size: 1rem; margin-top: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,.12);
  }
  .gp-submit:hover { filter: brightness(0.96); }
  
  .small-note { color: #666; font-size: .9rem; margin-top: 6px; }
  