/* style/community-player-stories.css */

/* Base styles for the page content */
.page-community-player-stories {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Dark text on light background for readability */
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-community-player-stories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-community-player-stories__section {
    padding: 60px 0;
}

.page-community-player-stories__section--alt-bg {
    background-color: #e9ecef;
}

/* Hero Section */
.page-community-player-stories__hero {
    background: linear-gradient(135deg, #0A2463 0%, #2c4a86 100%); /* Dark gradient for hero */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-community-player-stories__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff; /* White text on dark background */
    font-weight: bold;
}

.page-community-player-stories__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #f0f0f0; /* Slightly off-white for contrast */
}

.page-community-player-stories .text-highlight {
    color: #E0B34F; /* Gold highlight */
}

/* Buttons */
.page-community-player-stories__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-community-player-stories__btn--primary {
    background-color: #E0B34F; /* Gold button */
    color: #0A2463; /* Dark text on gold */
}

.page-community-player-stories__btn--primary:hover {
    background-color: #c79e40; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-community-player-stories__btn--secondary {
    background-color: transparent;
    color: #E0B34F; /* Gold text */
    border: 2px solid #E0B34F;
    margin-left: 20px;
}

.page-community-player-stories__btn--secondary:hover {
    background-color: #E0B34F;
    color: #0A2463; /* Dark text on gold */
    transform: translateY(-2px);
}

/* Section Titles */
.page-community-player-stories__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-community-player-stories__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B34F;
    border-radius: 2px;
}

/* Paragraphs */
.page-community-player-stories__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
}

/* Story Cards */
.page-community-player-stories__story-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-community-player-stories__story-card--reverse {
    flex-direction: row-reverse;
}

.page-community-player-stories__story-image {
    flex: 1;
    max-width: 45%;
    border-radius: 10px;
    object-fit: cover;
    height: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-community-player-stories__story-content {
    flex: 1;
    max-width: 55%;
}

.page-community-player-stories__story-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

/* Lists */
.page-community-player-stories__list {
    list-style: disc inside;
    margin-bottom: 30px;
    padding-left: 20px;
}

.page-community-player-stories__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

/* Testimonials Grid */
.page-community-player-stories__testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-community-player-stories__testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-community-player-stories__testimonial-quote {
    font-size: 1.15em;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-community-player-stories__testimonial-author {
    font-weight: bold;
    color: #0A2463;
    font-size: 1em;
}

/* CTA Section */
.page-community-player-stories__cta-section {
    background-color: #0A2463; /* Dark background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-community-player-stories__cta-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #ffffff; /* White text on dark background */
}

.page-community-player-stories__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-community-player-stories__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Image Wrapper & Caption */
.page-community-player-stories__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-community-player-stories__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.page-community-player-stories__image-caption {
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-community-player-stories__hero-title {
        font-size: 2.5em;
    }

    .page-community-player-stories__section-title {
        font-size: 2em;
    }

    .page-community-player-stories__story-card {
        flex-direction: column;
        text-align: center;
    }

    .page-community-player-stories__story-card--reverse {
        flex-direction: column;
    }

    .page-community-player-stories__story-image {
        max-width: 80%;
        margin-bottom: 30px;
    }

    .page-community-player-stories__story-content {
        max-width: 100%;
    }

    .page-community-player-stories__cta-title {
        font-size: 2.2em;
    }

    .page-community-player-stories__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-community-player-stories__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-community-player-stories__hero {
        padding: 80px 0;
    }

    .page-community-player-stories__hero-title {
        font-size: 2em;
    }

    .page-community-player-stories__hero-description {
        font-size: 1em;
    }

    .page-community-player-stories__section {
        padding: 40px 0;
    }

    .page-community-player-stories__section-title {
        font-size: 1.8em;
    }

    .page-community-player-stories__story-card {
        padding: 20px;
    }

    .page-community-player-stories__testimonial-card {
        padding: 20px;
    }

    .page-community-player-stories__cta-section {
        padding: 60px 0;
    }

    .page-community-player-stories__cta-title {
        font-size: 1.8em;
    }

    .page-community-player-stories__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-community-player-stories__hero-title {
        font-size: 1.6em;
    }

    .page-community-player-stories__section-title {
        font-size: 1.5em;
    }

    .page-community-player-stories__story-image {
        max-width: 100%;
    }

    .page-community-player-stories__testimonials-grid {
        grid-template-columns: 1fr;
    }

    .page-community-player-stories__cta-title {
        font-size: 1.6em;
    }
}