/* ==========================================================================
   Base
   ========================================================================== */
.hanover-reviews-grid {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.hanover-reviews-grid * {
    box-sizing: border-box;
}

/* ==========================================================================
   LUXURY REVIEW FORM  (.hr-form-*)
   ========================================================================== */
.hr-form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 50px;
    font-family: 'Poppins', sans-serif;
}

.hr-form-wrapper * {
    box-sizing: border-box;
}

/* Header */
.hr-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.hr-form-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #d88e00;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hr-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.hr-form-subtitle {
    font-size: 1rem;
    color: #777;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.hr-form-divider {
    width: 48px;
    height: 2px;
    background: #d88e00;
    margin: 0 auto;
}

/* Two-column row */
.hr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

/* Field */
.hr-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.hr-form-row .hr-form-field {
    margin-bottom: 0;
}

/* Label */
.hr-field-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr-optional {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #aaa;
    font-size: 0.78rem;
}

.hr-required {
    color: #d88e00;
}

/* Input */
.hr-field-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: inherit;
    outline: none;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.hr-field-input::placeholder {
    color: #bbb;
}

.hr-field-input:focus {
    border-color: #d88e00;
}

.hr-field-hint {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
}

/* Star Picker */
.hr-star-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.hr-star-picker input[type="radio"] {
    display: none;
}

.hr-star-picker label {
    cursor: pointer;
    color: #ccc;
    transition: color 0.15s;
}

.hr-star-picker label .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.hr-star-picker input:checked~label,
.hr-star-picker label:hover,
.hr-star-picker label:hover~label {
    color: #f5a623;
}

/* File upload */
.hr-file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px dashed #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #777;
    transition: border-color 0.2s, color 0.2s;
    width: fit-content;
}

.hr-file-label:hover {
    border-color: #d88e00;
    color: #d88e00;
}

.hr-file-label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.hr-file-input {
    display: none;
}

/* Submit */
.hr-form-submit-wrap {
    margin-top: 10px;
}

.hr-submit-btn,
.hanover-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d2340;
    color: #fff;
    border: none;
    padding: 16px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s ease;
}

.hr-submit-btn:hover,
.hanover-btn-submit:hover {
    background: #d88e00;
}

.hr-submit-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* TinyMCE wrapper border */
.hr-form-field .wp-editor-wrap {
    border: 1px solid #e0e0e0 !important;
}

/* Responsive */
@media (max-width: 640px) {
    .hr-form-wrapper {
        padding: 40px 20px;
    }

    .hr-form-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hr-form-title {
        font-size: 1.8rem;
    }
}


/* ==========================================================================
   Review List Grid (Redesigned)
   ========================================================================== */
.hanover-reviews-grid {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

/* Column Overrides */
.hanover-reviews-grid.hanover-cols-1 {
    grid-template-columns: 1fr;
}

.hanover-reviews-grid.hanover-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.hanover-reviews-grid.hanover-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.hanover-reviews-grid.hanover-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}


/* ==========================================================================
   REVIEW CARD  (.hr-rv-card)
   ========================================================================== */
.hr-rv-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hr-rv-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.hr-rv-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f2f2f2;
}

.hr-rv-thumb .hr-thumb-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.hr-rv-placeholder {
    width: 100%;
    height: 210px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.hr-rv-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.hr-rv-body {
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hr-rv-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0d2340;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.hr-rv-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin: 0 0 18px 0;
    flex: 1;
}

.hr-rv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: auto;
    gap: 10px;
}

.hr-rv-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hr-rv-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0d2340;
}

.hr-rv-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #888;
}

.hr-rv-location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.hr-rv-readmore {
    font-size: 0.82rem;
    font-weight: 600;
    color: #d88e00;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   WALKTHROUGH CARD  (.hr-wt-card)
   ========================================================================== */
.hr-wt-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.hr-wt-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    margin-bottom: 12px;
}

.hr-wt-thumb .hr-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.hr-wt-card:hover .hr-thumb-img {
    opacity: 0.8;
}

.hr-wt-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.hr-wt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: background 0.2s;
}

.hr-wt-play .dashicons {
    color: #fff;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.hr-wt-card:hover .hr-wt-play {
    background: rgba(216, 142, 0, 0.85);
}

.hr-wt-body {
    padding: 0 4px;
}

.hr-wt-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.hr-wt-author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}

.hr-wt-author .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
}

@media (max-width: 768px) {

    .hanover-reviews-grid,
    .hanover-reviews-grid[class*="hanover-cols-"] {
        grid-template-columns: 1fr !important;
    }

    .hanover-reviews-heading {
        font-size: 2rem;
    }
}


/* ==========================================================================
   Single Review Page
   ========================================================================== */
/* ==========================================================================
   Single Review Page – Two-Column Layout
   ========================================================================== */
.hanover-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 0 20px;
}

.hanover-single-review-area {
    background: #fdfdfd;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.hanover-single-review-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.hanover-single-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.hanover-single-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hanover-single-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hanover-single-stars {
    font-size: 1.2rem;
}

.hanover-single-date {
    color: #888;
    font-size: 1rem;
}

.hanover-single-media {
    width: 100%;
    background: #000;
}

.hanover-image-embed img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.hanover-single-content {
    padding: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.hanover-single-content p {
    margin-bottom: 20px;
}

.hanover-single-back {
    padding: 0 40px 40px;
    text-align: center;
}

.hanover-btn-back {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hanover-btn-back:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* ==========================================================================
   Sidebar – More Reviews
   ========================================================================== */
.hanover-single-sidebar {
    position: sticky;
    top: 30px;
}

.hanover-sidebar-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: inherit;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #d88e00;
}

.hanover-sidebar-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.hanover-sidebar-card:hover {
    opacity: 0.75;
}

.hanover-sidebar-thumb {
    width: 80px;
    min-width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.hanover-sidebar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hanover-sidebar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.hanover-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hanover-sidebar-title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: inherit;
}

.hanover-sidebar-name {
    font-size: 0.78rem;
    color: #888;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
    .hanover-single-layout {
        grid-template-columns: 1fr;
    }

    .hanover-single-sidebar {
        position: static;
    }

    .hanover-single-review-wrapper {
        max-width: 100%;
    }
}

/* ==========================================================================
   Featured Walkthrough Hero  ([hanover_featured_walkthrough])
   ========================================================================== */
.hanover-fw-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
}

.hanover-fw-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    color: inherit;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hanover-fw-highlight {
    background: #f7df99;
    padding: 2px 8px;
    border-radius: 4px;
}

.hanover-fw-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hanover-fw-thumb-link {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
}

.hanover-fw-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 380px;
    transition: opacity 0.3s;
}

.hanover-fw-thumb-link:hover .hanover-fw-img {
    opacity: 0.88;
}

.hanover-fw-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 16px;
}

.hanover-fw-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hanover-fw-play .dashicons {
    color: #d88e00;
    font-size: 30px;
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.hanover-fw-thumb-link:hover .hanover-fw-play {
    transform: translate(-50%, -50%) scale(1.08);
}

.hanover-fw-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #d88e00;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

.hanover-fw-author .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.hanover-fw-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    color: inherit;
}

.hanover-fw-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.hanover-fw-star {
    color: #f5a623;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.hanover-fw-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
}

.hanover-fw-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hanover-fw-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: inherit;
}

.hanover-fw-bullets li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #d88e00;
    border-radius: 50%;
}

.hanover-fw-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d88e00;
    text-decoration: none;
    transition: gap 0.2s;
}

.hanover-fw-cta:hover {
    gap: 10px;
}

@media (max-width: 768px) {
    .hanover-fw-inner {
        grid-template-columns: 1fr;
    }

    .hanover-fw-heading {
        font-size: 1.8rem;
    }

    .hanover-fw-title {
        font-size: 1.5rem;
    }
}