/* Actors Section */
.actors-section {
    padding: 4rem 2rem;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.actor-card {
    background-color: #f1f5f9;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.actor-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.actor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.actor-card p {
    color: rgb(57, 56, 56);
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}