/*
Theme Name: Enrollment Resources Client
Theme URI: http://enrollmentresources.com
Author: Enrollment Resources
Author URI: http://enrollmentresources.com
Description: Description
Version: 1.0
Template: er-2015
Tags:
*/

/*
Place custom styles here
*/

/* Testimonials text color*/
blockquote {
	color: black;
}
/* Footer social icons to greyscale */
.social-icons .fa {
	background-color: black !important;
}

/* Featured Testimonial - Side by Side Layout */
.featured-testimonial {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
    background: #f8f8f8; /* Adjust to match your design */
    padding: 30px;
}

.featured-testimonial-image {
    flex: 0 0 250px;
    max-width: 250px;
}

.featured-testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-testimonial-content {
    flex: 1;
}

.testimonial-heading {
    color: #7b1fa2; /* Adjust to your brand color */
    margin: 0 0 15px 0;
    font-size: 24px;
}

.testimonial-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    margin: 15px 0;
}

.testimonial-company {
    font-style: italic;
    color: #666;
}

.testimonial-link {
    display: inline-block;
    margin-top: 10px;
    color: inherit;
    text-decoration: none;
}

.featured-testimonial {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
    background: #f8f8f8;
    padding: 30px;
    border: 4px solid #6b2d5c; /* Purple border around entire section */
}

/* Responsive */
@media (max-width: 768px) {
    .featured-testimonial {
        flex-direction: column;
    }
    
    .featured-testimonial-image {
        flex: 0 0 auto;
        max-width: 100%;
        margin-bottom: 20px;
    }
}