/* Atlantic Expats Testimonials Styling */

/* Card Styling */
.testimonial-card {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(11, 180, 170, 0.15) !important;
}

/* User Icon */
.testimonial-icon {
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-icon i {
    color: #0bb4aa;
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 180, 170, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-icon i {
    background: #0bb4aa;
    color: white;
    transform: scale(1.05);
}

/* Testimonial Header */
.testimonial-header {
    text-align: center;
    margin-bottom: 20px;
}

/* Testimonial Stars */
.testimonial-stars {
    color: #FFD700 !important;
    font-size: 20px !important;
    margin-top: 5px !important;
    margin-bottom: 25px !important;
}

/* Testimonial Content */
.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
}

/* Original French */
.testimonial-content p.has-secondary-color {
    font-style: italic;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dotted rgba(11, 180, 170, 0.2);
}

/* Testimonial Date */
.testimonial-date {
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

/* Add More Message Card */
.add-more-message {
    border-color: rgba(11, 180, 170, 0.3) !important;
    background: rgba(11, 180, 170, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.add-more-message .testimonial-icon i {
    color: #0bb4aa;
    background: rgba(11, 180, 170, 0.1);
}

.add-more-message:hover .testimonial-icon i {
    background: #0bb4aa;
    color: white;
}

/* Column Styling */
.wp-block-column {
    display: flex;
    flex-direction: column;
}

/* Mobile Styles */
@media screen and (max-width: 781px) {
    .testimonial-card {
        margin-bottom: 30px !important;
    }
    
    .testimonial-icon i {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }
}

/* Block Editor Specific Styles */
.block-editor-page .testimonial-card {
    border: 1px solid #e0e0e0;
}

.block-editor-page .testimonial-icon {
    pointer-events: none; /* Prevent clicking on icons in editor */
}

/* Ensure proper spacing in editor */
.wp-block[data-type="core/pattern"] .testimonial-card {
    margin-bottom: 0 !important;
}

/* Editor preview improvements */
.block-editor-block-preview__container .testimonial-card {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1) !important;
}

.block-editor-block-preview__container .testimonial-card:hover {
    transform: none; /* Disable hover effects in preview */
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1) !important;
}