/* style/industry-news-player-community-insights.css */
.page-industry-news-player-community-insights {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

.page-industry-news-player-community-insights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-industry-news-player-community-insights__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A3047 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure sufficient height */
}

.page-industry-news-player-community-insights__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-industry-news-player-community-insights__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news-player-community-insights__subtitle {
    font-size: 1.4em;
    color: #f5e6d0; /* Light text */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-player-community-insights__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-industry-news-player-community-insights__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) blur(5px);
}

.page-industry-news-player-community-insights__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-player-community-insights__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-player-community-insights__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-player-community-insights__section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #c0c0c0;
}

.page-industry-news-player-community-insights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-player-community-insights__grid-item {
    background-color: #1A3047; /* Darker blue for item background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-industry-news-player-community-insights__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-industry-news-player-community-insights__grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-industry-news-player-community-insights__item-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for item titles */
    margin: 0 20px 15px 20px;
    font-weight: bold;
    text-align: center;
}

.page-industry-news-player-community-insights__grid-item p {
    font-size: 1em;
    color: #c0c0c0;
    text-align: left;
    padding: 0 20px;
    margin-bottom: 0;
}

.page-industry-news-player-community-insights__content-block {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.page-industry-news-player-community-insights__content-block:last-child {
    margin-bottom: 0;
}

.page-industry-news-player-community-insights__content-block--reversed {
    flex-direction: row-reverse;
}

.page-industry-news-player-community-insights__content-image {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 350px;
    object-fit: cover;
}

.page-industry-news-player-community-insights__content-text {
    flex: 1;
    max-width: 50%;
}

.page-industry-news-player-community-insights__content-text .page-industry-news-player-community-insights__item-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-industry-news-player-community-insights__content-text p {
    text-align: left;
    margin: 0;
    color: #c0c0c0;
}

.page-industry-news-player-community-insights__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-industry-news-player-community-insights__list li {
    background-color: #1A3047;
    border-left: 5px solid #FFD700;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-player-community-insights__list li:last-child {
    margin-bottom: 0;
}

.page-industry-news-player-community-insights__list li .page-industry-news-player-community-insights__item-title {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-industry-news-player-community-insights__list li p {
    text-align: left;
    margin: 0;
    color: #c0c0c0;
}

.page-industry-news-player-community-insights__cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-industry-news-player-community-insights__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Buttons */
.page-industry-news-player-community-insights__btn-primary,
.page-industry-news-player-community-insights__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.page-industry-news-player-community-insights__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-industry-news-player-community-insights__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-player-community-insights__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-industry-news-player-community-insights__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F; /* Dark blue background, dark blue text */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-player-community-insights__title {
        font-size: 2.8em;
    }
    .page-industry-news-player-community-insights__subtitle {
        font-size: 1.2em;
    }
    .page-industry-news-player-community-insights__section-title {
        font-size: 2em;
    }
    .page-industry-news-player-community-insights__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-industry-news-player-community-insights__content-block--reversed {
        flex-direction: column;
    }
    .page-industry-news-player-community-insights__content-image,
    .page-industry-news-player-community-insights__content-text {
        max-width: 100%;
    }
    .page-industry-news-player-community-insights__content-text .page-industry-news-player-community-insights__item-title {
        text-align: center;
    }
    .page-industry-news-player-community-insights__content-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-industry-news-player-community-insights__hero {
        padding: 80px 0;
    }
    .page-industry-news-player-community-insights__title {
        font-size: 2.2em;
    }
    .page-industry-news-player-community-insights__subtitle {
        font-size: 1em;
    }
    .page-industry-news-player-community-insights__section {
        padding: 40px 0;
    }
    .page-industry-news-player-community-insights__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-player-community-insights__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news-player-community-insights__btn-primary,
    .page-industry-news-player-community-insights__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-player-community-insights__list li {
        padding: 20px;
    }
}