/* style/industry-news-platform-comparisons.css */

/* Base styles for the page content, ensuring good contrast and typography */
.page-industry-news-platform-comparisons {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text color for general content on dark backgrounds */
    background-color: #0A192F; /* Main background color */
    padding: 0;
    margin: 0;
}

/* Container for consistent content width */
.page-industry-news-platform-comparisons__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section Styling */
.page-industry-news-platform-comparisons__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Gradient background using main color */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-industry-news-platform-comparisons__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-industry-news-platform-comparisons__hero .page-industry-news-platform-comparisons__container {
    position: relative;
    z-index: 1;
}

.page-industry-news-platform-comparisons__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for primary title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-platform-comparisons__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f5e6d0; /* Light text for subtitle */
}

/* Section Styling */
.page-industry-news-platform-comparisons__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-industry-news-platform-comparisons__section:last-of-type {
    border-bottom: none;
}

.page-industry-news-platform-comparisons__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-platform-comparisons__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-industry-news-platform-comparisons__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6d0; /* Light text for paragraphs */
}

/* Image Styling */
.page-industry-news-platform-comparisons__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Grid for Criteria Section */
.page-industry-news-platform-comparisons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news-platform-comparisons__grid-item {
    background-color: #1a3a60; /* Darker blue for grid items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-industry-news-platform-comparisons__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-industry-news-platform-comparisons__grid-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for grid titles */
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-news-platform-comparisons__grid-item p {
    font-size: 1em;
    color: #c0c0c0; /* Lighter gray for grid item paragraphs */
}

/* Table Styling for Comparison */
.page-industry-news-platform-comparisons__table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news-platform-comparisons__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is wide enough on smaller screens */
}

.page-industry-news-platform-comparisons__table th,
.page-industry-news-platform-comparisons__table td {
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: #f5e6d0;
}

.page-industry-news-platform-comparisons__table th {
    background-color: #1a3a60; /* Darker blue for table headers */
    color: #FFD700;
    font-size: 1.1em;
    text-transform: uppercase;
}

.page-industry-news-platform-comparisons__table tbody tr:nth-child(odd) {
    background-color: #0F203D; /* Slightly lighter dark blue for odd rows */
}

.page-industry-news-platform-comparisons__table tbody tr:nth-child(even) {
    background-color: #0A192F; /* Main dark blue for even rows */
}

.page-industry-news-platform-comparisons__table-caption {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #c0c0c0;
    font-size: 0.9em;
}

/* List Styling */
.page-industry-news-platform-comparisons__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-industry-news-platform-comparisons__list li {
    background-color: #1a3a60;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700; /* Gold accent */
    font-size: 1.1em;
    color: #f5e6d0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-platform-comparisons__list li strong {
    color: #FFD700;
}

/* Callout Box */
.page-industry-news-platform-comparisons__callout {
    background-color: #0F203D; /* Slightly lighter dark blue */
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.page-industry-news-platform-comparisons__callout-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-industry-news-platform-comparisons__callout p {
    font-size: 1.1em;
    color: #f5e6d0;
    margin-bottom: 20px;
}

.page-industry-news-platform-comparisons__steps-list {
    list-style-type: decimal;
    padding-left: 25px;
    text-align: left;
    margin: 30px auto;
    max-width: 600px;
    color: #f5e6d0;
}

.page-industry-news-platform-comparisons__steps-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #c0c0c0;
}

.page-industry-news-platform-comparisons__steps-list li strong {
    color: #FFD700;
}

/* CTA Buttons */
.page-industry-news-platform-comparisons__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA buttons */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

.page-industry-news-platform-comparisons__cta-button:hover {
    background-color: #e0b800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-industry-news-platform-comparisons__cta-button--secondary {
    background-color: #0A192F; /* Dark blue for secondary CTA */
    color: #FFD700; /* Gold text on dark blue button */
    border: 2px solid #FFD700;
}

.page-industry-news-platform-comparisons__cta-button--secondary:hover {
    background-color: #1a3a60; /* Darker blue on hover */
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* FAQ Accordion */
.page-industry-news-platform-comparisons__accordion {
    margin-top: 40px;
}

.page-industry-news-platform-comparisons__accordion-item {
    margin-bottom: 15px;
    background-color: #1a3a60;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news-platform-comparisons__accordion-header {
    width: 100%;
    background-color: #0F203D; /* Darker blue for accordion header */
    color: #FFD700;
    padding: 20px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-industry-news-platform-comparisons__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-industry-news-platform-comparisons__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-industry-news-platform-comparisons__accordion-header:hover {
    background-color: #1a3a60;
}

.page-industry-news-platform-comparisons__accordion-content {
    padding: 0 20px;
    background-color: #1a3a60;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #c0c0c0;
}

.page-industry-news-platform-comparisons__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-industry-news-platform-comparisons__accordion-content p {
    margin: 0;
    font-size: 1em;
    color: #c0c0c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news-platform-comparisons__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-platform-comparisons__hero-subtitle {
        font-size: 1.2em;
    }

    .page-industry-news-platform-comparisons__section-title {
        font-size: 2em;
    }

    .page-industry-news-platform-comparisons__grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-platform-comparisons__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-industry-news-platform-comparisons__accordion-header {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news-platform-comparisons__hero-title {
        font-size: 2em;
    }

    .page-industry-news-platform-comparisons__hero-subtitle {
        font-size: 1em;
    }

    .page-industry-news-platform-comparisons__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-platform-comparisons__grid-title {
        font-size: 1.4em;
    }

    .page-industry-news-platform-comparisons__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}