/* Base styles */
.bg-charcoal {
    background-color: #364049;
}

/* Slider container */
.slider-container {
    position: relative;
    padding: 0 60px;
    margin-bottom: 50px;
}

/* Individual slide styles */
.my-slider .slide {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Quote text styles */
.testimonial-text {
    font-style: italic;
    color: #4B5563;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Author info styles */
.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-initial {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background-color: #F3F4F6;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #374151;
}

/* Navigation buttons */
.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.prev-button:hover,
.next-button:hover {
    background-color: #F3F4F6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tiny Slider specific styles */
.tns-outer {
    position: relative;
}

.tns-nav {
    text-align: center;
    margin-top: 1.5rem;
}

.tns-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tns-nav button.tns-nav-active {
    background-color: white;
    transform: scale(1.2);
}
