.olc-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb;
    min-height: 100vh;
}

.olc-hero {
    background-color: #fff;
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
}

.olc-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.olc-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0b0f19;
    margin-bottom: 24px;
}

.olc-content h1 span {
    color: #8c52ff;
    display: block;
}

.olc-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 500px;
}

.olc-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.olc-stat-item {
    display: flex;
    flex-direction: column;
}

.olc-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b0f19;
    line-height: 1;
    margin-bottom: 5px;
}

.olc-stat-label {
    font-size: 0.85rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.olc-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.olc-image img:hover {
    transform: rotate(0deg);
}

.olc-teachers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.olc-section-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.olc-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b0f19;
    margin: 0;
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.teacher-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s ease;
    display: flex;
    flex-direction: column;
}

.teacher-card.is-pending-display {
    opacity: 0;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.tc-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.tc-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tc-info h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b0f19;
}

.tc-rating {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tc-body {
    padding: 24px;
    flex-grow: 1;
}

.tc-bio {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.tc-footer {
    padding: 16px 24px;
    background-color: #f9fafb;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tc-price {
    font-weight: 700;
    color: #0b0f19;
    font-size: 1.1rem;
}

.tc-btn {
    background-color: #8c52ff;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.tc-btn:hover {
    background-color: #7000e2;
    color: #fff;
}

.olc-load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

#olc-load-more-btn {
    background-color: #fff;
    color: #8c52ff;
    border: 2px solid #e5e7eb;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

#olc-load-more-btn:hover {
    border-color: #8c52ff;
    background-color: #f5f3ff;
}

.loader {
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 1.1rem;
    width: 100%;
    grid-column: 1 / -1;
}

.olc-no-results {
    text-align: center;
    padding: 40px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .olc-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .olc-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .olc-stats {
        justify-content: center;
    }

    .olc-image {
        order: -1;
    }
}
