/* DV Pro Lawyer Frontend Styles */
.dvpl-testimonial-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    gap: 20px;
    margin-bottom: 20px;
}

.dvpl-testimonial-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}

.dvpl-testimonial-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.dvpl-testimonial-content {
    margin-bottom: 10px;
    font-size: 14px;
}

.dvpl-testimonial-rating .dashicons {
    color: #f1c40f;
}

.dvpl-testimonial-single {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 20px;
}

.dvpl-booking-form {
    max-width: 500px;
    margin: 0 auto;
}

.dvpl-booking-form .dvpl-form-group {
    margin-bottom: 15px;
}

.dvpl-booking-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.dvpl-booking-form input[type="text"],
.dvpl-booking-form input[type="email"],
.dvpl-booking-form input[type="datetime-local"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dvpl-booking-form .dvpl-submit-button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dvpl-booking-form .dvpl-submit-button:hover {
    background-color: #005177;
}

.dvpl-booking-form .dvpl-form-message {
    margin-top: 10px;
}

.dvpl-blog-archive .dvpl-blog-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.dvpl-blog-item h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.dvpl-blog-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.dvpl-blog-excerpt {
    margin-bottom: 10px;
}

.dvpl-read-more {
    color: #0073aa;
    text-decoration: none;
}

.dvpl-read-more:hover {
    text-decoration: underline;
}