/* ══════════════════════════════════════════════════════
   WRITE REVIEW (standalone page)
   Reuses .fdo-wm-* classes from reviews_widget.css for form
   styling; this file only handles page-level layout & card.
   ══════════════════════════════════════════════════════ */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.fdo-wp-section {
    padding: 50px 0 70px;
    background: #f8f9fb;
    min-height: calc(100vh - 200px);
}

.fdo-wp-heading {
    text-align: center;
    margin-bottom: 30px;
}
.fdo-wp-heading .title-inner {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.4px;
}
.fdo-wp-heading .title-inner span {
    color: #ff3600;
}
.fdo-wp-heading p {
    font-size: 15px;
    color: #6b7280;
    margin: 10px 0 0;
}

.fdo-wp-card {
    background: #fff;
    border-radius: 14px;
    max-width: 640px;
    margin: 0 auto;
    padding: 36px 36px 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}

@media (max-width: 575px) {
    .fdo-wp-section { padding: 30px 0 50px; }
    .fdo-wp-card    { padding: 24px 20px 22px; border-radius: 10px; }
    .fdo-wp-heading .title-inner { font-size: 24px; }
}

