/* style/blog-expert-opinions.css */
.page-blog-expert-opinions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light grey for general text on dark background */
    background-color: #0A1931; /* Primary dark background */
}

.page-blog-expert-opinions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-expert-opinions__hero {
    background: linear-gradient(135deg, #0A1931, #2a3d5b); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-blog-expert-opinions__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold accent for title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-blog-expert-opinions__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

/* Buttons */
.page-blog-expert-opinions__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    font-size: 1.1em;
    margin: 10px;
    text-align: center;
    white-space: nowrap;
}

.page-blog-expert-opinions__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-blog-expert-opinions__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-2px);
}

.page-blog-expert-opinions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-blog-expert-opinions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-blog-expert-opinions__btn--tertiary {
    background-color: #0A1931; /* Dark blue background */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-blog-expert-opinions__btn--tertiary:hover {
    background-color: #2a3d5b;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-blog-expert-opinions__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    margin: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-blog-expert-opinions__btn--text:hover {
    color: #e6c200;
}


/* Content Section */
.page-blog-expert-opinions__content-section {
    padding: 60px 0;
}

.page-blog-expert-opinions__article-intro {
    font-size: 1.1em;
    margin-bottom: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-blog-expert-opinions__article {
    background-color: #1A2A47; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #F0F0F0;
}

.page-blog-expert-opinions__article-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 15px;
    font-weight: 600;
}

.page-blog-expert-opinions__subtitle {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-blog-expert-opinions__article p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-blog-expert-opinions__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-blog-expert-opinions__list li {
    margin-bottom: 8px;
}

.page-blog-expert-opinions__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-blog-expert-opinions__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-expert-opinions__quote {
    background-color: #0A1931; /* Darker background for quote */
    border-left: 5px solid #FFD700;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #FFD700;
    font-size: 1.15em;
    border-radius: 0 8px 8px 0;
}

/* Call to Action Section */
.page-blog-expert-opinions__cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    color: #0A1931; /* Dark blue text on gold */
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 60px;
}

.page-blog-expert-opinions__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0A1931;
    font-weight: 700;
}

.page-blog-expert-opinions__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333; /* Slightly darker for better contrast on gold */
}

.page-blog-expert-opinions__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-expert-opinions__cta-buttons .page-blog-expert-opinions__btn {
    margin: 10px 15px;
}

/* Adjust primary button for CTA section for better contrast on gold background */
.page-blog-expert-opinions__cta-section .page-blog-expert-opinions__btn--primary {
    background-color: #0A1931; /* Dark blue background */
    color: #FFD700; /* Gold text */
    border-color: #0A1931;
}

.page-blog-expert-opinions__cta-section .page-blog-expert-opinions__btn--primary:hover {
    background-color: #2a3d5b;
    border-color: #2a3d5b;
    color: #FFD700;
}

.page-blog-expert-opinions__cta-section .page-blog-expert-opinions__btn--secondary {
    background-color: transparent;
    color: #0A1931;
    border-color: #0A1931;
}

.page-blog-expert-opinions__cta-section .page-blog-expert-opinions__btn--secondary:hover {
    background-color: #0A1931;
    color: #FFD700;
}

/* Related Articles Section */
.page-blog-expert-opinions__related-articles {
    padding: 40px 0;
    text-align: center;
}

.page-blog-expert-opinions__related-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-blog-expert-opinions__related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-expert-opinions__related-item {
    background-color: #1A2A47;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-expert-opinions__related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-expert-opinions__related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-blog-expert-opinions__related-item-title {
    font-size: 1.4em;
    color: #FFD700;
    margin: 0 20px 10px 20px;
    min-height: 60px; /* Ensure consistent height for titles */
    font-weight: 500;
}

.page-blog-expert-opinions__related-item-desc {
    font-size: 0.95em;
    color: #E0E0E0;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-blog-expert-opinions__related-item .page-blog-expert-opinions__btn {
    align-self: flex-start;
    margin-left: 20px;
    padding: 8px 15px;
    font-size: 0.9em;
    border: 1px solid #FFD700;
    color: #FFD700;
    background-color: transparent;
    text-decoration: none;
    border-radius: 5px;
}

.page-blog-expert-opinions__related-item .page-blog-expert-opinions__btn:hover {
    background-color: #FFD700;
    color: #0A1931;
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-blog-expert-opinions__hero-title {
        font-size: 2.5em;
    }
    .page-blog-expert-opinions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-blog-expert-opinions__article-title {
        font-size: 1.8em;
    }
    .page-blog-expert-opinions__subtitle {
        font-size: 1.4em;
    }
    .page-blog-expert-opinions__cta-title {
        font-size: 2em;
    }
    .page-blog-expert-opinions__related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog-expert-opinions__hero {
        padding: 80px 0;
    }
    .page-blog-expert-opinions__hero-title {
        font-size: 2em;
    }
    .page-blog-expert-opinions__hero-subtitle {
        font-size: 1em;
    }
    .page-blog-expert-opinions__article {
        padding: 30px;
    }
    .page-blog-expert-opinions__article-title {
        font-size: 1.6em;
    }
    .page-blog-expert-opinions__subtitle {
        font-size: 1.2em;
    }
    .page-blog-expert-opinions__cta-section {
        padding: 40px 20px;
    }
    .page-blog-expert-opinions__cta-title {
        font-size: 1.8em;
    }
    .page-blog-expert-opinions__cta-text {
        font-size: 1em;
    }
    .page-blog-expert-opinions__cta-buttons {
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .page-blog-expert-opinions__cta-buttons .page-blog-expert-opinions__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-blog-expert-opinions__container {
        padding: 0 15px;
    }
    .page-blog-expert-opinions__hero-title {
        font-size: 1.8em;
    }
    .page-blog-expert-opinions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-blog-expert-opinions__article {
        padding: 20px;
    }
    .page-blog-expert-opinions__article-title {
        font-size: 1.4em;
    }
    .page-blog-expert-opinions__subtitle {
        font-size: 1.1em;
    }
    .page-blog-expert-opinions__quote {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-blog-expert-opinions__related-item-title {
        font-size: 1.2em;
    }
}