/* style/resources-13win-industry-news.css */
.page-resources-13win-industry-news {
    font-family: 'Arial', sans-serif;
    color: #000080; /* Dark Blue for general text */
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-13win-industry-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-13win-industry-news__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-13win-industry-news__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-resources-13win-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    font-weight: bold;
}

.page-resources-13win-industry-news__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-resources-13win-industry-news__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark Blue text on gold */
    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;
    margin: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.page-resources-13win-industry-news__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-13win-industry-news__cta-button--secondary {
    background-color: #000080; /* Dark Blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-resources-13win-industry-news__cta-button--secondary:hover {
    background-color: #000066; /* Slightly darker dark blue on hover */
}

.page-resources-13win-industry-news__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-resources-13win-industry-news__article {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-13win-industry-news__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark Blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-13win-industry-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-resources-13win-industry-news__sub-section-title {
    font-size: 1.8em;
    color: #000080; /* Dark Blue for sub-section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-13win-industry-news__article p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-resources-13win-industry-news__article-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-13win-industry-news__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333;
}

.page-resources-13win-industry-news__list li {
    margin-bottom: 8px;
}

.page-resources-13win-industry-news__inline-cta {
    display: inline-block;
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-resources-13win-industry-news__inline-cta:hover {
    background-color: #000066;
}

.page-resources-13win-industry-news__call-to-action {
    background-color: #000080; /* Dark Blue background */
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-13win-industry-news__cta-heading {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold heading */
}

.page-resources-13win-industry-news__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-13win-industry-news__hero-title {
        font-size: 2.5em;
    }

    .page-resources-13win-industry-news__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-13win-industry-news__section-title {
        font-size: 2em;
    }

    .page-resources-13win-industry-news__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-13win-industry-news__article {
        padding: 20px;
    }

    .page-resources-13win-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-13win-industry-news__call-to-action {
        padding: 30px;
    }

    .page-resources-13win-industry-news__cta-heading {
        font-size: 1.8em;
    }

    .page-resources-13win-industry-news__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-13win-industry-news__hero-title {
        font-size: 2em;
    }

    .page-resources-13win-industry-news__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-13win-industry-news__cta-button {
        width: 90%;
        display: block;
        margin: 10px auto;
    }

    .page-resources-13win-industry-news__section-title {
        font-size: 1.8em;
    }

    .page-resources-13win-industry-news__sub-section-title {
        font-size: 1.3em;
    }

    .page-resources-13win-industry-news__article p,
    .page-resources-13win-industry-news__list li {
        font-size: 0.95em;
    }
}