/* WIM Page Styles */
.wim-content {
    padding: 2rem 0;
}

.wim-content h2.wim-title {
    font-size: var(--text-3xl) !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem !important;
    border-bottom: 2px solid var(--primary) !important;
    padding-bottom: 0.5rem !important;
}

/* Fallback colors if variables fail */
.wim-content h2.wim-title {
    color: #0c1016 !important; /* Fallback to dark color */
}

.wim-details {
    background: var(--bg-light) !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--primary) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Fallback background if variables fail */
.wim-details {
    background: #ffffff !important; /* Fallback to white background */
}

.wim-details p {
    margin-bottom: 1rem !important;
    font-size: var(--text-lg) !important;
    line-height: 1.6 !important;
    color: var(--text-primary) !important;
}

/* Fallback text color if variables fail */
.wim-details p {
    color: #0c1016 !important; /* Fallback to dark color */
}

.wim-details p:last-child {
    margin-bottom: 0 !important;
}

.wim-details strong {
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
}

/* Fallback strong color if variables fail */
.wim-details strong {
    color: #E55A2B !important; /* Fallback to dark orange */
}

.wim-details a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

/* Fallback link color if variables fail */
.wim-details a {
    color: #FF6B35 !important; /* Fallback to orange */
}

.wim-details a:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
}

/* Fallback hover color if variables fail */
.wim-details a:hover {
    color: #E55A2B !important; /* Fallback to dark orange */
}