:root {
    --brand-red: #b31c1c;
    --brand-red-hover: #901616;
    --text-main: #111827;
    --text-muted: #6b7280;
    --card-border: #efd8d8;
    --bg-body: #f9fafb;
}

.premium-lectors-section {
    background-color: var(--bg-body);
    padding: 60px 0;
    font-family: "poppins", sans-serif !important;
}

.lector-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 10px 15px -3px rgba(0,0,0,0.03);
    margin-bottom: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.lector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1px 1px rgba(0,0,0,0.15), 0 2px 2px rgba(0,0,0,0.15), 0 4px 4px rgba(0,0,0,0.15), 0 8px 8px rgba(0,0,0,0.15);
    border-color: #e5e7eb;
}

.lector-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fce8e8; 
    padding: 40px 0 20px 0;
}
.lector-img-wrap img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}
.lector-card:hover .lector-img-wrap img {
    transform: scale(1.05);
}

.lector-img-wrap .abs-link {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
}

.lector-content {
    padding: 10px 30px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.lector-name {
    font-family: "poppins", sans-serif !important;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    margin-top: 15px!important;
    line-height: 1.2;
}
.lector-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.lector-name a:hover {
    color: var(--brand-red);
}

.lector-tags {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.lector-tags span {
    background-color: #fdf2f2;
    color: var(--brand-red);
    border: 1px solid var(--card-border);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lector-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-lector {
    margin-top: auto;
    background-color: var(--brand-red);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-lector:hover {
    background-color: var(--brand-red-hover);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(179, 28, 28, 0.2);
}