/* style/resources-security-fairness.css */

.page-resources-security-fairness {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* Explicitly white for content area if shared is default */
}

.page-resources-security-fairness__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

.page-resources-security-fairness__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image for text readability */
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-resources-security-fairness__hero-container {
    position: relative;
    max-width: 1920px; /* Max width for hero content */
    margin: 0 auto;
}

.page-resources-security-fairness__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-security-fairness__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-resources-security-fairness__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-resources-security-fairness__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1F3B; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 200px; /* Minimum size */
    min-height: 50px; /* Minimum size */
}

.page-resources-security-fairness__hero-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-security-fairness__article-nav {
    background-color: #0A1F3B; /* Deep blue background */
    padding: 15px 0;
}

.page-resources-security-fairness__back-link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-security-fairness__back-link:hover {
    color: #ffffff; /* White on hover */
}

.page-resources-security-fairness__content-article {
    padding: 40px 0;
}

.page-resources-security-fairness__container {
    max-width: 800px; /* Content width for readability */
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-security-fairness__section-title {
    color: #0A1F3B; /* Deep blue for main titles */
    font-size: 2.5em;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-resources-security-fairness__sub-section-title {
    color: #0A1F3B; /* Deep blue for sub-titles */
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-resources-security-fairness__article-body p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-security-fairness__article-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-resources-security-fairness__cta-block {
    text-align: center;
    background-color: #0A1F3B; /* Deep blue background */
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 50px;
    border-radius: 10px;
}

.page-resources-security-fairness__cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #FFD700; /* Gold text */
}

.page-resources-security-fairness__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1F3B; /* Dark blue text on gold */
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 200px; /* Minimum size */
    min-height: 50px; /* Minimum size */
}

.page-resources-security-fairness__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-security-fairness__mobile-floating-buttons {
    display: none; /* Hidden by default, shown on mobile */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-security-fairness__hero-title {
        font-size: 2.5em;
    }

    .page-resources-security-fairness__hero-description {
        font-size: 1.1em;
    }

    .page-resources-security-fairness__section-title {
        font-size: 2em;
    }

    .page-resources-security-fairness__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-security-fairness {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }

    .page-resources-security-fairness__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-resources-security-fairness__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-resources-security-fairness__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-security-fairness__container {
        padding: 0 15px;
    }

    .page-resources-security-fairness__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-resources-security-fairness__sub-section-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-resources-security-fairness__article-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Minimum size */
        min-height: 200px; /* Minimum size */
    }

    .page-resources-security-fairness__cta-text {
        font-size: 1.2em;
    }

    .page-resources-security-fairness__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    /* Mobile floating buttons */
    .page-resources-security-fairness__mobile-floating-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #0A1F3B; /* Deep blue background */
        padding: 10px 0;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .page-resources-security-fairness__floating-button {
        flex: 1;
        text-align: center;
        background-color: #FFD700; /* Gold button */
        color: #0A1F3B; /* Dark blue text */
        padding: 12px 0;
        margin: 0 5px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        min-width: 100px; /* Adjusted min-width for mobile buttons */
        min-height: 40px; /* Adjusted min-height for mobile buttons */
    }

    .page-resources-security-fairness__floating-button:hover {
        background-color: #e6c200; /* Darker gold on hover */
    }
}

@media (max-width: 480px) {
    .page-resources-security-fairness__hero-title {
        font-size: 1.8em;
    }

    .page-resources-security-fairness__hero-description {
        font-size: 0.9em;
    }

    .page-resources-security-fairness__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-security-fairness__section-title {
        font-size: 1.6em;
    }

    .page-resources-security-fairness__sub-section-title {
        font-size: 1.2em;
    }

    .page-resources-security-fairness__cta-text {
        font-size: 1em;
    }

    .page-resources-security-fairness__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .page-resources-security-fairness__floating-button {
        font-size: 1em;
        padding: 10px 0;
    }
}