/* TIT Page Purple Color Scheme */
.tit-hero {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
}

.tit-hero h2 {
    color: #8a2be2;
}

.tit-hero .subtitle {
    color: #9370db;
}

.tit-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.content-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8a2be2;
    border-bottom: 3px solid #9370db;
    padding-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.handler-methods {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.handler-methods li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(75, 0, 130, 0.05));
    border-left: 4px solid #8a2be2;
    border-radius: 8px;
}

.handler-methods li strong {
    color: #8a2be2;
    display: block;
    margin-bottom: 0.5rem;
}

.ti-victims-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ti-victim-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ti-victim-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
    border: 2px solid #9370db;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.ti-victim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
}

.ti-victim-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #8a2be2;
}

.ti-location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ti-status {
    color: #9370db;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Purple header override for TIT page */
body:has(.tit-hero) header {
    background: linear-gradient(135deg, #8a2be2, #4b0082);
}

/* Responsive design for TIT page */
@media (max-width: 768px) {
    .content-section h3 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .ti-victims-list {
        grid-template-columns: 1fr;
    }

    .ti-victim-card {
        padding: 1.25rem;
    }
}

