/* Custom Speaker Section */
.custom-speaker-section {
    background-color: #fff;
}

.custom-speaker-title {
    margin-bottom: 40px;
}

.custom-speaker-title h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.custom-speaker-title h2 .text-blue {
    color: #0A2540;
    display: block;
}

.custom-speaker-title h2 .text-green {
    color: #6dba4f;
    display: block;
}

/* Feature Cards */
.feature-cards-wrap {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    background: #fff;
    font-weight: 400;
    font-size: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.feature-card-green {
    border: 1px solid #6dba4f;
    color: #138936;
}

.feature-card-green i {
    background: #dcf2e3;
    color: #138936;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.feature-card-orange {
    border: 1px solid #F38400;
    color: #F38400;
}

.feature-card-orange i {
    background: #fde8d4;
    color: #F38400;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.feature-card span {
    display: inline-block;
    line-height: 1.2;
}

/* Left Image */
.custom-speaker-main-img {
    width: 100%;
    border-radius: 20px;
}

/* Right Column Top Header */
.speaker-right-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #0A2540;
    color: #0A2540;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn i {
    margin-left: 10px;
    font-size: 14px;
}

.view-all-btn:hover {
    background: #0A2540;
    color: #fff;
}

/* Speaker Card */
.custom-speaker-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.speaker-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.speaker-badge {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #138936;
    color: #fff;
    width: 40px;
    height: 40px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
    border-radius: 12px 0 0 0;
}

.speaker-badge i {
    position: absolute;
    top: 5px;
    left: 6px;
    font-size: 10px;
}

.custom-speaker-content {
    padding: 20px;
}

.custom-speaker-content h4 {
    color: #0A2540;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 5px;
}

.custom-speaker-content p {
    color: #138936;
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Horizontal Speaker Card */
.custom-speaker-card-horizontal {
    display: flex;
    align-items: center;
}

.custom-speaker-card-horizontal .speaker-card-img {
    width: 50%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px 0 0 12px;
}

.custom-speaker-card-horizontal .custom-speaker-content {
    width: 50%;
    padding: 30px 40px;
}

.custom-speaker-card-horizontal .custom-speaker-content h4 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.custom-speaker-card-horizontal .custom-speaker-content p {
    font-size: 16px;
}

@media (max-width: 991px) {
    .custom-speaker-title h2 { font-size: 36px; }
    .speaker-right-header { justify-content: flex-start; margin-top: 30px; }
    .custom-speaker-card-horizontal { flex-direction: column; }
    .custom-speaker-card-horizontal .speaker-card-img { width: 100%; border-radius: 12px 12px 0 0; min-height: 280px; }
    .custom-speaker-card-horizontal .custom-speaker-content { width: 100%; }
}

