/**
 * Company Directory Manager - Frontend Styles
 */

.company-directory-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.company-results-info {
    margin-bottom: 20px;
    text-align: right;
}

.results-count {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.company-search-wrapper {
    position: relative;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}

.company-search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-search-input:focus {
    border-color: #2271b1;
    box-shadow: 0 4px 20px rgba(34, 113, 177, 0.15);
}

.search-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    color: #666;
    font-size: 14px;
    text-decoration: underline;
}

.search-clear-btn:hover {
    color: #333;
    text-decoration: none;
}
/* Loading */
.company-loading {
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Standard Grid */
/* Standard Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Made in Bay Layout - Single Column */
.companies-grid.made-in-bay-layout {
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Standard Company Card - Sharp Corners */
.company-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.company-card-inner {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Made in Bay Horizontal Card */
.made-in-bay-card {
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 40px;
}

.made-in-bay-card:hover {
    transform: none;
}

.made-in-bay-card .video-section {
    flex: 0 0 60%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.made-in-bay-card .video-section video,
.made-in-bay-card .video-section iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.made-in-bay-card .video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.made-in-bay-card .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.made-in-bay-card .info-section {
    flex: 0 0 calc(40% - 40px);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Logo - White Background */
.company-logo {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 4px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.made-in-bay-card .company-logo {
    min-height: 120px;
    margin-bottom: 15px;
}

.company-logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.company-logo a:hover {
    opacity: 0.8;
}

.company-logo img {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.made-in-bay-card .company-logo img {
    max-width: 150px;
    max-height: 100px;
}

/* Company Header */
.company-header {
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.company-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.made-in-bay-card .company-name {
    font-size: 20px;
    font-weight: 700;
}

.company-location {
    margin: 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Company Description */
.company-description {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

.description-preview,
.description-full {
    margin-bottom: 10px;
}

.see-more-link {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.see-more-link:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Contact Information - White Background, Sharp Corners */
/* Contact Information - Updated: No border, smaller card, white background */
.company-contact {
    margin-bottom: 20px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border: none;
}

.made-in-bay-card .company-contact {
    margin-bottom: 0;
}

/* Hide contact section if no contact details */
.company-contact:empty {
    display: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-content {
    flex: 1;
}

.contact-content strong,
.contact-item strong {
    font-weight: 600;
    color: #1a1a1a;
    display: inline;
    margin-right: 4px;
    font-size: 12px;
}

.contact-content a,
.contact-item a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 13px;
}

.contact-content a:hover,
.contact-item a:hover {
    color: #135e96;
    text-decoration: underline;
}

.job-title {
    display: inline;
    font-size: 12px;
    color: #666;
}

/* Bay Connect Button */
.connect-button-wrapper {
    margin-top: 15px;
}

.company-card .connect-button-wrapper .connect-button {
    width: 100%;
    padding: 20px !important;
    background: #668fbb;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Manual vertical alignment */
    display: block !important;
    text-align: center !important;
    line-height: 1.2 !important; /* Adjust this number slightly up/down */
    height: auto !important;
    padding-top: 19px !important; /* Adjust manually */
    padding-bottom: 21px !important; /* Adjust manually */
}
/* Connect Form Popup
.connect-form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.connect-form-popup.active {
    display: block;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 4px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #c82333;
    transform: rotate(90deg);
} */

/* Pagination */
.company-pagination {
    margin-top: 40px;
    text-align: center;
}

.company-pagination .page-numbers {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-pagination .page-numbers li {
    list-style: none;
}

.company-pagination .page-numbers a,
.company-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 16px;
    text-decoration: none;
    color: #2271b1;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-pagination .page-numbers a:hover {
    background: #2271b1;
    color: white;
    border-color: #2271b1;
}

.company-pagination .page-numbers .current {
    background: #2271b1;
    color: white;
    border-color: #2271b1;
}

/* No Results */
.no-results,
.no-companies-message {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .made-in-bay-card {
        flex-direction: column;
        gap: 0;
    }
    
    .made-in-bay-card .video-section,
    .made-in-bay-card .info-section {
        flex: 1 1 100%;
    }
    
    .made-in-bay-card .video-section video,
    .made-in-bay-card .video-section iframe {
        min-height: 300px;
    }
    
    .made-in-bay-card .video-embed {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .company-directory-container {
        padding: 15px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-search-wrapper {
        margin-left: 0;
        max-width: 100%;
    }
    
    .popup-content {
        width: 95%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .company-card-inner {
        padding: 20px;
    }
    
    .company-logo {
        min-height: 120px;
        padding: 15px;
    }
    
    .company-name {
        font-size: 16px;
    }
}

/* Made in Bay Card - Remove strict height limit */
.made-in-bay-card {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 280px;
    max-height: none; /* CHANGED: Removed max-height limit */
    gap: 25px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Video Section - Match card height */
.made-in-bay-card .video-section {
    flex: 0 0 70%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    align-self: stretch; /* ADDED: Makes video fill card height */
}

.made-in-bay-card .video-section video,
.made-in-bay-card .video-section iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

/* Info Section - Better overflow handling */
.made-in-bay-card .info-section {
    flex: 0 0 calc(30% - 25px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: visible; /* CHANGED: Allow see-more to be visible */
}

/* Compact Description */
.made-in-bay-card .company-description {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #444;
    flex-grow: 0; /* CHANGED: Don't let it grow too much */
    overflow: visible; /* CHANGED: Allow see-more to show */
    position: relative;
}

.made-in-bay-card .description-preview {
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.5em;
}

.made-in-bay-card .description-full {
    display: none;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.5;
}

.made-in-bay-card .description-full.active {
    display: block;
}

.made-in-bay-card .see-more-link {
    font-size: 12px;
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 4px;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 10;
}

.made-in-bay-card .company-contact {
    margin-top: auto; 
    margin-bottom: 0;
    padding: 8px 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .made-in-bay-card {
        flex-direction: row;
        min-height: 250px;
        max-height: 280px;
        gap: 20px;
    }
    
    .made-in-bay-card .video-section {
        flex: 0 0 65%;
    }
    
    .made-in-bay-card .info-section {
        flex: 0 0 calc(35% - 20px);
    }
    
    .made-in-bay-card .video-section video,
    .made-in-bay-card .video-section iframe,
    .made-in-bay-card .video-embed {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .made-in-bay-card {
        flex-direction: column;
        min-height: auto;
        max-height: none;
        gap: 0;
    }
    
    .made-in-bay-card .video-section {
        flex: 0 0 200px;
    }
    
    .made-in-bay-card .info-section {
        flex: 1 1 auto;
        padding: 15px;
    }
    
    .made-in-bay-card .video-section video,
    .made-in-bay-card .video-section iframe,
    .made-in-bay-card .video-embed {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .made-in-bay-card .video-section {
        flex: 0 0 180px;
    }
    
    .made-in-bay-card .video-section video,
    .made-in-bay-card .video-section iframe,
    .made-in-bay-card .video-embed {
        min-height: 180px;
    }
    
    .made-in-bay-card .info-section {
        padding: 12px;
    }
    
    .made-in-bay-card .company-logo {
        min-height: 60px;
        padding: 8px;
    }
    
    .made-in-bay-card .company-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

/* ========================================
   MODAL SYSTEM - Clean Two Column
   ======================================== */

/* Modal Container - Fixed overlay */
#cdm-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#cdm-modal-container.active {
    opacity: 1;
    visibility: visible;
}

/* Hide the original popup (it's cloned into the modal) */
.company-card .connect-form-popup {
    display: none;
}

/* Force show when in modal */
#cdm-modal-container .connect-form-popup {
    display: block !important;
}

/* Modal Backdrop */
#cdm-modal-container .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(0.25rem);
}

/* Modal Content Box */
#cdm-modal-container .popup-content {
    position: relative;
    background: white;
    border-radius: 0.75rem;
    padding: 2rem 2.5rem 2.25rem;
    max-width: 50rem;
    width: 85vw;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}

#cdm-modal-container.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

/* Modal Header */
#cdm-modal-container .popup-content h3 {
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #1a1a1a;
    padding-right: 2.5rem;
    line-height: 1.2;
}

/* Company Info Section */
#cdm-modal-container .company-info {
    margin: 0 0 1.75rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid #e5e5e5;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
}

#cdm-modal-container .company-info .contact-name {
    font-weight: 600;
    color: #333;
}

#cdm-modal-container .company-info .contact-title {
    color: #666;
}

#cdm-modal-container .company-info .contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.375rem;
    color: #666;
}

#cdm-modal-container .company-info .contact-email svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Close Button */
/* ========================================
   MODAL CLOSE BUTTON - Matching Sidebar Style
   ======================================== */

#cdm-modal-container .popup-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 24px !important;
    height: 24px !important;
    background: #000 !important;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #fff !important;
    line-height: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    font-family: Arial, sans-serif !important;
    z-index: 2 !important;
}

#cdm-modal-container .popup-close::before {
    content: "✕";
    font-size: 12px !important;
    font-weight: 400;
    line-height: 1;
    display: block;
    color: #fff;
}

#cdm-modal-container .popup-close:hover {
    background: #222 !important;
}

#cdm-modal-container .popup-close {
    text-indent: -9999px; 
}

#cdm-modal-container .popup-close::before {
    text-indent: 0; 
}

#cdm-modal-container .builtin-contact-form {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem;
}


#cdm-modal-container .builtin-contact-form p {
    margin: 0;
}

#cdm-modal-container .builtin-contact-form p:has(textarea),
#cdm-modal-container .builtin-contact-form .button-row {
    grid-column: 1 / -1;
}

#cdm-modal-container .builtin-contact-form .button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1rem;
}

#cdm-modal-container .builtin-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.875rem;
}

#cdm-modal-container .builtin-contact-form input[type="text"],
#cdm-modal-container .builtin-contact-form input[type="email"],
#cdm-modal-container .builtin-contact-form input[type="tel"],
#cdm-modal-container .builtin-contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #fafafa;
    box-sizing: border-box;
}

#cdm-modal-container .builtin-contact-form input::placeholder,
#cdm-modal-container .builtin-contact-form textarea::placeholder {
    color: #999;
}

#cdm-modal-container .builtin-contact-form input:focus,
#cdm-modal-container .builtin-contact-form textarea:focus {
    outline: none;
    border-color: #668fbb;
    background: #fff;
    box-shadow: 0 0 0 0.1875rem rgba(74, 144, 226, 0.1);
}

/* Textarea Specific */
#cdm-modal-container .builtin-contact-form textarea {
    resize: vertical;
    min-height: 7rem;
    max-height: 15rem;
}

/* Send Message Button - Centered */
#cdm-modal-container .builtin-contact-form button[type="submit"] {
    background: #668fbb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.875rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 12rem;
    margin: 0;
}

#cdm-modal-container .builtin-contact-form button[type="submit"]:before {
    content: "✉";
    font-size: 1.125rem;
}

#cdm-modal-container .builtin-contact-form button[type="submit"]:hover:not(:disabled) {
    background: #357ABD;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1rem rgba(74, 144, 226, 0.35);
}

#cdm-modal-container .builtin-contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Button sending state */
#cdm-modal-container .builtin-contact-form button[type="submit"].sending:before {
    content: "";
}

#cdm-modal-container .builtin-contact-form button[type="submit"].sending {
    opacity: 0.7;
    cursor: wait;
}

/* Better status message styling */
#cdm-modal-container .form-status {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
    margin-top: 0.75rem;
    min-height: 1.5rem;
    display: block;
}

/* Prevent body scroll when modal is open */
body.popup-open {
    overflow: hidden;
}

/* Responsive Modal */
@media (max-width: 62rem) {
    #cdm-modal-container .popup-content {
        width: 90vw;
        padding: 1.75rem 2rem 2rem;
    }
}

@media (max-width: 48rem) {
    #cdm-modal-container .popup-content {
        width: 95vw;
        padding: 1.5rem 1.25rem 1.75rem;
    }
    
    /* Single column on mobile */
    #cdm-modal-container .builtin-contact-form {
        grid-template-columns: 1fr;
    }
    
    #cdm-modal-container .popup-content h3 {
        font-size: 1.25rem;
    }
    
    #cdm-modal-container .builtin-contact-form button[type="submit"] {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 30rem) {
    #cdm-modal-container .popup-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 3.75rem 1.25rem 1.875rem;
    }
    
    #cdm-modal-container .popup-close {
        top: 0.9375rem;
        right: 0.9375rem;
    }
    
    #cdm-modal-container .builtin-contact-form button[type="submit"] {
        padding: 0.875rem 1.5rem;
    }
}

/* Form Status Message - Make it VERY visible */
#cdm-modal-container .form-status {
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
    display: block;
    min-height: 30px;
    line-height: 30px;
}

#cdm-modal-container .form-status span {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    background: #f8f9fa;
}

.connect-button-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.company-card .connect-button-wrapper .connect-button {
    width: 100%;
    max-width: 200px;
    padding: 0 !important;
    height: 50px !important;
    background: #668fbb;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

h4, .elementor-widget-heading h4 {
    font-size: 20px !important;
    font-weight: 600 !important;
}

h5, .elementor-widget-heading h5 {
    font-size: 18px !important;
    font-weight: 600 !important;
}
.item--title {
    font-size: unset !important;
}
h4.item--title,
.item--title.h4 {
    font-size: 36px !important;
}

h5.item--title,
.item--title.h5 {
    font-size: 32px !important;
}

h6.item--title,
.item--title.h6 {
    font-size: 22px !important;
}

/* Override item--title heading sizes */
h4.item--title { font-size: 36px !important; }
h5.item--title { font-size: 32px !important; }
h6.item--title { font-size: 22px !important; }


/* Force all H4 site-wide */
h4,
h4[class*="elementor"],
h4.item--title,
.elementor-widget-heading h4 {
    font-size: 36px !important;
    font-weight: 600 !important;
}

/* Force all H5 site-wide */
h5,
h5[class*="elementor"],
h5.item--title,
.elementor-widget-heading h5 {
    font-size: 32px !important;
    font-weight: 600 !important;
}

/* Force all H6 site-wide */
h6,
h6[class*="elementor"],
h6.item--title,
.elementor-widget-heading h6 {
    font-size: 22px !important;
    font-weight: 600 !important;
}
