/* Classic Teacher Card Styling */
.classic-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 20px 10px;
    text-align: center;
    margin: 10px;
    /* Space for Carousel */
    transition: all 0.3s ease;
}

.classic-card .frame {
    width: 160px;
    height: 200px;
    margin: 0 auto 20px;
    border: 2px solid #c5a059;
    /* Classic Gold */
    padding: 6px;
    background: #fff;
}

.classic-card .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.classic-card .teacher-name {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    margin: 0 0 5px;
}

.classic-card .teacher-name a {
    text-decoration: none;
    color: #1a2a3a;
}

.classic-card .subject-title {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.classic-card .ornament {
    width: 50px;
    height: 1px;
    background: #c5a059;
    margin: 0 auto 20px;
    position: relative;
}

.classic-card .ornament::after {
    content: '◆';
    color: #c5a059;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 5px;
    font-size: 10px;
}

.classic-card .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.classic-card .social-links a {
    color: #1a2a3a;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.classic-card .social-links a:hover {
    color: #c5a059;
}