.speaker-filter-form {
    display: flex;
    gap: 25px !important;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.filter-field label {
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 8px;
    font-size: 14px;
}
.filter-field input::placeholder {
    color: #003E5B;
    opacity: 1; 
}

/* Firefox ke liye */
.filter-field input::-moz-placeholder {
    color: #003E5B;
    opacity: 1;
}

/* Internet Explorer aur Edge ke liye */
.filter-field input:-ms-input-placeholder {
    color: #003E5B;
}
button#filter-btn {
    background: #FDB913;
    width: 116px;
    opacity: 1;
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
    gap: 40px;
    border-radius: 8px;
    border: none !important;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #01335E !important;
}


.filter-field input, .filter-field select {
    padding: 10px 0 !important;
    border: none !important;
    border-bottom: 1px solid #003E5B !important;
    border-radius: 0 !important;
    background: transparent;
    outline: none;
    color: #003E5B !important;
    font-family: DM Sans;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
}

.filter-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
    position: relative; 
}

.filter-field input {
    padding: 10px 35px 10px 0; 
    border: none;
    border-bottom: 2px solid #1a2b4c;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
    width: 100%;
}

/* Search input ke andhar Magnifying Glass Icon add karne ke liye */
.filter-field input[name="s_keyword"] + ::after, /* optional selector */
.filter-field:first-child::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 18px;
    height: 18px;
    background-image: url("/wp-content/uploads/2026/08/svg-image-22-25.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}


.filter-submit-btn {
    background-color: #ffc107;
    color: #1a2b4c;
    font-weight: 700;
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
}

.filter-submit-btn:hover {
    background-color: #e0a800;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.speaker-card {
    background-color: #f2f6fa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 280px !important;
    object-fit: cover;
    display: block;
}

.speaker-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.speaker-content h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a2b4c;
    margin: 0 0 10px 0;
    font-family: 'DM Sans';
    line-height: 150% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase;
}


.speaker-content p {
    color: #003E5B;
    margin: 0 0 20px 0;
    font-family: DM Sans;
    font-weight: 300;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0%;
}

.speaker-country {
    font-size: 11px;
    font-weight: 400;
    color: #003E5B;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
}

/* Load More Button Styling */
#load-more {
    background-color: #ffc107;
    color: #01335E !important;
    font-weight: 700;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    text-transform: uppercase;
    font-family: 'DM Sans';
    font-size: 16px;
}

#load-more:hover {
    background-color: #e0a800;
}


.down-icon i {
    font-size: 16px;
    margin-top: 5px;
    margin-left: 9px;
}