/* HERO COMPONENT */
.th-hero {
    background-color: var(--th-primary);
    color: white;
    padding: var(--th-spacing-lg) 0;
    text-align: center;
}

.th-hero-title {
    font-size: var(--th-font-2xl);
    margin-bottom: var(--th-spacing-sm);
}

/* CARD COMPONENT */
.th-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.th-card:hover {
    transform: translateY(-5px);
}

.th-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.th-card-content {
    padding: var(--th-spacing-sm);
}

.th-card-title {
    font-size: var(--th-font-xl);
    margin-bottom: var(--th-spacing-xs);
    color: var(--th-primary);
}