/* style/blog-interview-with-pro-player.css */
.page-blog-interview-with-pro-player {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-blog-interview-with-pro-player__hero {
    background: linear-gradient(135deg, #CC0000 0%, #a00000 100%); /* Darker red gradient */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-blog-interview-with-pro-player__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.page-blog-interview-with-pro-player__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-interview-with-pro-player__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-blog-interview-with-pro-player__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #CC0000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-interview-with-pro-player__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-blog-interview-with-pro-player__hero-image-wrapper {
    position: absolute;
    bottom: -20px;
    right: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.2;
    z-index: 1;
}

.page-blog-interview-with-pro-player__hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-blog-interview-with-pro-player__interview-section,
.page-blog-interview-with-pro-player__related-content,
.page-blog-interview-with-pro-player__final-cta {
    padding: 60px 0;
}

.page-blog-interview-with-pro-player__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-blog-interview-with-pro-player__section-title {
    font-size: 2.5em;
    color: #CC0000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-blog-interview-with-pro-player__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-interview-with-pro-player__interviewer,
.page-blog-interview-with-pro-player__player-response {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.page-blog-interview-with-pro-player__interviewer-image,
.page-blog-interview-with-pro-player__player-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    flex-shrink: 0;
}

.page-blog-interview-with-pro-player__interviewer p,
.page-blog-interview-with-pro-player__player-response p {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-blog-interview-with-pro-player__interviewer p::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.page-blog-interview-with-pro-player__player-response p::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 30px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.page-blog-interview-with-pro-player__player-response {
    flex-direction: row-reverse;
    text-align: right;
}

.page-blog-interview-with-pro-player__player-response p {
    background-color: #f0f0f0;
}

.page-blog-interview-with-pro-player__question {
    font-size: 1.8em;
    color: #CC0000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-blog-interview-with-pro-player__tips-list {
    list-style: decimal;
    padding-left: 30px;
    margin-bottom: 30px;
}

.page-blog-interview-with-pro-player__tips-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-blog-interview-with-pro-player__action-box {
    background-color: #FFF8E1; /* Light gold background */
    border-left: 5px solid #FFD700;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-interview-with-pro-player__action-box h3 {
    color: #CC0000;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-blog-interview-with-pro-player__action-box p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

.page-blog-interview-with-pro-player__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-interview-with-pro-player__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-blog-interview-with-pro-player__card:hover {
    transform: translateY(-5px);
}

.page-blog-interview-with-pro-player__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-blog-interview-with-pro-player__card-title {
    font-size: 1.5em;
    color: #CC0000;
    margin: 20px 15px 10px;
}

.page-blog-interview-with-pro-player__card-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

.page-blog-interview-with-pro-player__card-link {
    display: inline-block;
    background-color: #CC0000;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-blog-interview-with-pro-player__card-link:hover {
    background-color: #a00000;
}

.page-blog-interview-with-pro-player__final-cta {
    background-color: #CC0000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-blog-interview-with-pro-player__final-cta .page-blog-interview-with-pro-player__section-title {
    color: #FFD700;
}

.page-blog-interview-with-pro-player__final-cta .page-blog-interview-with-pro-player__section-title::after {
    background-color: #f0f0f0;
}

.page-blog-interview-with-pro-player__final-cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.page-blog-interview-with-pro-player__cta-button--large {
    font-size: 1.4em;
    padding: 18px 35px;
    margin-right: 20px;
}

.page-blog-interview-with-pro-player__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-blog-interview-with-pro-player__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #CC0000;
    transform: translateY(-3px);
}

.page-blog-interview-with-pro-player .highlight {
    color: #CC0000;
    font-weight: bold;
}

.page-blog-interview-with-pro-player__hero .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-blog-interview-with-pro-player__title {
        font-size: 2.5em;
    }

    .page-blog-interview-with-pro-player__subtitle {
        font-size: 1.2em;
    }

    .page-blog-interview-with-pro-player__interviewer,
    .page-blog-interview-with-pro-player__player-response {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-blog-interview-with-pro-player__interviewer p::before,
    .page-blog-interview-with-pro-player__player-response p::before {
        display: none;
    }

    .page-blog-interview-with-pro-player__interviewer p,
    .page-blog-interview-with-pro-player__player-response p {
        margin-top: 15px;
        text-align: left;
    }

    .page-blog-interview-with-pro-player__player-response {
        flex-direction: column;
    }

    .page-blog-interview-with-pro-player__player-response p {
        text-align: left;
    }

    .page-blog-interview-with-pro-player__hero-image-wrapper {
        display: none;
    }

    .page-blog-interview-with-pro-player__cta-button--large,
    .page-blog-interview-with-pro-player__cta-button--secondary {
        margin: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-blog-interview-with-pro-player__title {
        font-size: 2em;
    }

    .page-blog-interview-with-pro-player__section-title {
        font-size: 2em;
    }

    .page-blog-interview-with-pro-player__question {
        font-size: 1.5em;
    }

    .page-blog-interview-with-pro-player__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}