/**
 * Testimonial-1 Template CSS
 *
 * @package wp.plugin.svx
 * @version 1.0.0
 * @author SV Agency
 * @since 1.0.0
 *
 * Template-specific CSS for testimonial-1 styling
 * Loaded conditionally when testimonial-1 posts are present
 *
 * Usage:
 * This CSS file contains template-specific styling for the testimonial-1 template.
 * It should be loaded only when testimonial-1 posts are being displayed
 * to avoid CSS bloat on pages that don't need it.
 *
 * Dependencies:
 * - Requires svx-post.css to be loaded first for universal post styling
 *
 * CSS Class System:
 * - svx-testimonial-1: Template-specific class for testimonial-1 styling
 *   * Contains all testimonial-1 specific visual styling
 *   * Includes card layout, quote icon, and author info styling
 *   * Married to testimonial-1 template's unique design requirements
 *
 * Last Updated: 2025-01-27
 */

.svx-testimonial-1 {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color-1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svx-testimonial-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.svx-testimonial-1 .testimonial-quote {
    position: relative;
    margin-bottom: 25px;
    flex: 1;
}

.svx-testimonial-1 .quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.svx-testimonial-1 .testimonial-text {
    margin: 0;
    padding: 0;
    border: none;
}

.svx-testimonial-1 .testimonial-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-style: italic;
}

.svx-testimonial-1 .testimonial-content {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.svx-testimonial-1 .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.svx-testimonial-1 .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.svx-testimonial-1 .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-color-1);
}

.svx-testimonial-1 .author-info {
    display: flex;
    flex-direction: column;
}

.svx-testimonial-1 .author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.svx-testimonial-1 .author-title {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.8rem;
    font-style: italic;
}

.svx-testimonial-1 .author-company {
    font-weight: 500;
    color: var(--primary-color-1);
    font-size: 0.8rem;
}

.svx-testimonial-1 .testimonial-date {
    color: #868e96;
    font-size: 0.8rem;
}

.svx-testimonial-1 .testimonial-link {
    color: var(--primary-color-1);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.svx-testimonial-1 .testimonial-link:hover {
    color: var(--primary-color-2);
    text-decoration: none;
    transform: translateX(3px);
}