:root {
    --lme-gold: #c5a059;
    --lme-gold-dark: #b08d4b;
    --lme-black: #1a1a1a;
    --lme-text: #333;
    --lme-border: #e5e5e5;
    --lme-bg-light: #f9f9f9;
}

/* Global Styles */
.single-lme_event .entry-title,
.single-lme_event .page-title,
.single-lme_event h1.elementor-heading-title {
    display: none !important;
}

.lme-page-container {
    display: grid !important;
    grid-template-columns: 6.5fr 3.5fr !important;
    gap: 53px !important;
    font-family: 'Lato', sans-serif !important;
    color: var(--lme-text) !important;
    margin-bottom: 80px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.lme-event-title {
    grid-column: 1 / -1 !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 3em !important;
    color: var(--lme-black) !important;
    margin: 50px 0 20px !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

/* Mobile Reservation Buttons */
.lme-mobile-buttons {
    display: none;
    /* Hidden on Desktop */
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.lme-btn-vip-mobile {
    display: block;
    background: var(--lme-gold);
    color: var(--lme-black);
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: background 0.3s;
}

/* Bio Read More */
.lme-bio-content {
    position: relative;
    max-height: 150px;
    /* Adjust height as needed */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.lme-bio-content.expanded {
    max-height: none;
}

.lme-bio-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(transparent, #fff);
    pointer-events: none;
    transition: opacity 0.3s;
}

.lme-bio-content.expanded::after {
    opacity: 0;
}

.lme-read-more-btn {
    display: block;
    margin: 15px auto 0;
    background: none;
    border: 1px solid var(--lme-black);
    color: var(--lme-black);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.lme-read-more-btn:hover {
    background: var(--lme-black);
    color: #fff;
}

@media (min-width: 900px) {
    .lme-page-container {
        grid-template-columns: 6.5fr 3.5fr;
        gap: 53px;
    }
}

@media (max-width: 899px) {
    .lme-mobile-buttons {
        display: flex;
    }
}

/* Mobile Reservation Buttons */
@media (max-width: 899px) {
    .lme-mobile-buttons {
        display: flex;
        flex-direction: row;
        /* Side by side */
        gap: 10px;
        margin-bottom: 15px;
        /* Reduced from 30px */
        margin-top: 0;
    }

    .lme-mobile-buttons a {
        flex: 1;
        /* Equal width */
        padding: 0 10px;
        /* Smaller padding */
        font-size: 11px;
        /* Smaller font */
        line-height: 36px;
        /* Smaller height */
    }

    /* Mobile Title */
    h1.lme-event-title {
        font-family: 'Jost', sans-serif;
        font-size: 24px;
        /* Smaller size */
        margin-bottom: 15px;
    }

    /* Mobile Content Reordering */
    .lme-page-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .lme-col-left {
        display: contents;
        /* Allow children to be ordered in parent flex */
    }

    .lme-col-right {
        order: 3;
        /* Details after Bio */
        padding: 0;
        /* Reset padding if needed */
    }

    /* Left Column Children Order */
    .lme-artist-image {
        order: 1;
    }

    .lme-artist-bio {
        order: 2;
    }

    /* Events after Details */
    .lme-related-title,
    .lme-related-events,
    .lme-subscribe-section,
    .lme-all-upcoming-title,
    .lme-all-upcoming-list {
        order: 4;
    }
}

/* Mobile Button Styles (Base) */
.lme-mobile-buttons a {
    position: relative;
    z-index: 9;
    display: block;
    border: none;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
}

/* Mobile Regular Button */
.lme-mobile-buttons a.lme-btn-reg {
    background: #ffffff;
    color: #ff6600;
    border: 1px solid #ff6600;
    /* Optional border for visibility */
}

/* Mobile VIP Button */
.lme-mobile-buttons a.lme-btn-vip-mobile {
    background: #ff6600;
    color: #ffffff;
}

.lme-mobile-buttons a:hover {
    opacity: 0.9;
}

/* Left Column */
.lme-artist-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.lme-artist-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lme-event-badge-overlay {
    position: absolute;
    top: 20px;
    right: -5px;
    background: var(--lme-gold, #c5a059);
    color: #fff;
    padding: 10px 25px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.lme-event-badge-overlay::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 10px 0;
    border-color: transparent #8b6f3a transparent transparent;
}

.lme-event-badge-overlay::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 5px;
    border-color: transparent transparent transparent #8b6f3a;
}

.lme-artist-bio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-bottom: 25px;
    color: var(--lme-black);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.lme-artist-bio p {
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
    color: #444;
}

/* Subscribe Section */
.lme-subscribe-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--lme-gold);
}

.lme-subscribe-event {
    margin-top: 30px;
}

.lme-subscribe-section h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.5em;
    margin: 0 0 10px;
    color: var(--lme-black);
}

.lme-subscribe-section p {
    margin: 0 0 20px;
    color: #666;
    font-size: 15px;
}

.lme-subscribe-form {
    display: flex;
    gap: 10px;
}

.lme-subscribe-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.lme-subscribe-form button {
    background: var(--lme-black);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    transition: background 0.3s;
}

.lme-subscribe-form button:hover {
    background: var(--lme-gold);
}

.lme-success {
    color: #2e7d32;
    font-weight: 600;
    background: #e8f5e9;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #c8e6c9;
}

/* Related Events & All Upcoming */
.lme-related-title,
.lme-all-upcoming-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.8em;
    margin: 40px 0 20px;
    color: var(--lme-black);
    border-bottom: 2px solid var(--lme-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.lme-related-events,
.lme-all-upcoming-list {
    display: grid;
    gap: 15px;
}

.lme-related-item,
.lme-upcoming-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.3s;
    overflow: hidden;
}

.lme-related-item:hover,
.lme-upcoming-item:hover {
    border-color: var(--lme-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.lme-related-item a,
.lme-upcoming-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    gap: 15px;
}

.lme-u-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.lme-u-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lme-r-date,
.lme-u-date {
    background: var(--lme-black);
    color: var(--lme-gold);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    min-width: 80px;
    text-align: center;
    line-height: 1.2;
}

.lme-r-title,
.lme-u-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--lme-black);
}

.lme-u-artist {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    font-weight: 400;
}

/* Right Column */
.lme-col-right {
    padding: 20px;
}

.lme-info-block p {
    margin: 0 0 15px;
    font-size: 17px;
    line-height: 1.6;
}

.lme-directions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.lme-dir-title {
    font-size: 14px;
    font-weight: 700;
    color: #ff6600;
    /* Orange */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px !important;
    font-family: 'Jost', sans-serif;
}

.lme-dir-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lme-dir-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff6600;
    /* Orange */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Jost', sans-serif;
}

.lme-dir-links a:hover {
    color: #e65c00;
}

.lme-dir-links i {
    width: 20px;
    text-align: center;
    color: #ff6600;
    /* Orange */
}

.lme-info-block strong {
    color: var(--lme-black);
    font-weight: 700;
    min-width: 60px;
    display: inline-block;
}

.lme-divider {
    height: 1px;
    background-color: var(--lme-border);
    margin: 40px 0;
    width: 100%;
}

/* VIP Section */
.lme-vip-section {
    background: #fff !important;
    border: 1px solid var(--lme-gold) !important;
    padding: 5px !important;
    /* Inner border effect */
}

.lme-btn-vip {
    display: block !important;
    background-color: #dd5903 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 25px 20px !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    transition: background 0.3s !important;
    margin-bottom: 0 !important;
}

.lme-btn-vip:hover {
    background-color: #dd5903 !important;
    color: #fff !important;
}

/* General Link Styles - Scoped to plugin containers only */
.lme-page-container a:not([class*="button"]):not(.lme-btn-reg):not(.lme-dir-link):not(.lme-social-icon):hover,
.lme-artist-page a:not([class*="button"]):not(.lme-btn-reg):not(.lme-dir-link):not(.lme-social-icon):hover {
    opacity: 0.8;
}

.lme-btn-vip strong {
    font-family: 'Jost', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: block;
    margin: 5px 0;
    color: #ffffff;
}

.lme-vip-text {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    padding: 25px 20px;
    background: var(--lme-bg-light);
    color: #000000;
}

.lme-vip-text p {
    margin: 0;
}

.lme-vip-text strong {
    color: var(--lme-gold-dark);
}

/* Regular Section */
.lme-center-text {
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.lme-center-btn {
    text-align: center;
}

.lme-btn-reg {
    display: inline-block !important;
    border: 1px solid var(--lme-black) !important;
    color: var(--lme-black) !important;
    padding: 15px 40px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    transition: all 0.3s !important;
    background: transparent !important;
}

.lme-btn-reg:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Contact Info */
.lme-contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lme-contact-item {
    font-size: 16px;
    color: #444;
}

.lme-contact-item .dashicons {
    color: var(--lme-gold);
    margin-right: 8px;
    font-size: 20px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Map */
.lme-map-container {
    margin-bottom: 35px;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

.lme-map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* List Shortcode Styles (Preserved) */
.lme-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lme-event-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    background: #fff;
}

.lme-date-box {
    color: var(--lme-black);
    padding-right: 35px;
    text-align: center;
    min-width: 90px;
    border-right: 1px solid #eee;
    margin-right: 35px;
}

.lme-date-box span {
    display: block;
}

.lme-month {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

.lme-day {
    font-size: 2.8em;
    font-family: 'Playfair Display', serif;
    color: var(--lme-black);
    line-height: 1;
    margin-top: 5px;
}

.lme-details {
    flex: 1;
}

.lme-details h3 {
    margin: 0 0 8px;
    font-size: 1.2em;
    font-family: 'Jost', sans-serif;
    color: #000;
    font-weight: 500;
}

.lme-details h3 a {
    color: #000;
    text-decoration: none;
}

.lme-time {
    color: #888;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lme-btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    min-width: 160px;
    border: 1px solid var(--lme-black);
    color: #000 !important;
}

.lme-btn:hover {
    background: var(--lme-black);
    color: #fff !important;
}

/* Card Layout Styles */
.lme-events-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .lme-events-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lme-events-cards {
        grid-template-columns: 1fr;
    }
}

.lme-event-card-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lme-event-card-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.lme-card-thumbnail {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.lme-card-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.lme-event-card-item:hover .lme-card-thumbnail img {
    transform: scale(1.05);
}

.lme-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lme-card-title {
    margin: 0;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.95em !important;
    font-weight: 500;
    line-height: 1.4;
    color: #000 !important;
}

.lme-card-title a,
.lme-events-cards .lme-card-title a,
.lme-event-card-item .lme-card-title a,
.entry-content .lme-card-title a,
.entry-content .lme-events-cards .lme-card-title a,
.entry-content .lme-event-card-item .lme-card-title a {
    color: #000 !important;
    text-decoration: none !important;
    transition: color 0.3s;
}

.lme-card-title a:hover,
.lme-events-cards .lme-card-title a:hover,
.lme-event-card-item .lme-card-title a:hover,
.entry-content .lme-card-title a:hover,
.entry-content .lme-events-cards .lme-card-title a:hover,
.entry-content .lme-event-card-item .lme-card-title a:hover {
    color: #000 !important;
}

.lme-card-btn,
.lme-events-cards .lme-card-btn,
.lme-event-card-item .lme-card-btn,
.entry-content .lme-card-btn,
.entry-content .lme-events-cards .lme-card-btn,
.entry-content .lme-event-card-item .lme-card-btn {
    display: inline-block;
    color: #000 !important;
    text-decoration: none !important;
    font-family: 'Jost', sans-serif !important;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid #000;
    position: relative;
}

.lme-card-btn:hover,
.lme-events-cards .lme-card-btn:hover,
.lme-event-card-item .lme-card-btn:hover,
.entry-content .lme-card-btn:hover,
.entry-content .lme-events-cards .lme-card-btn:hover,
.entry-content .lme-event-card-item .lme-card-btn:hover {
    color: #000 !important;
    letter-spacing: 1px;
    border-bottom-width: 2px;
}

@media (max-width: 600px) {
    .lme-event-card {
        flex-direction: column;
        text-align: center;
    }

    .lme-date-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .lme-col-right {
        padding: 0;
    }
}

/* Artist Page Styles */
.single-lme_artist .entry-title,
.single-lme_artist .page-title {
    display: none !important;
}

.lme-artist-page {
    max-width: 1200px;
    margin: 50px auto 80px;
}

/* Header */
.lme-artist-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .lme-artist-header {
        grid-template-columns: 300px 1fr;
        align-items: center;
    }
}

.lme-artist-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.lme-artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin: 0 0 20px;
    color: var(--lme-black);
    font-weight: 400;
}

.lme-artist-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.lme-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lme-gold);
    color: #fff;
    font-size: 22px;
    transition: all 0.3s;
}

.lme-social-icon:hover {
    background: var(--lme-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fa-brands,
.fab {
    font-weight: 400 !important;
}

/* Event page - black icons */
.lme-page-container .fa-brands,
.lme-page-container .fab {
    color: #000000 !important;
}

/* Bio Section */
.lme-artist-bio-section {
    margin-bottom: 60px;
}

.lme-artist-bio-content p {
    line-height: 1.9;
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
}

/* Events Section */
.lme-artist-events-section {
    margin-bottom: 60px;
}

.lme-artist-events-section h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.8em;
    margin: 0 0 30px;
    color: var(--lme-black);
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
}

/* Events Grid */
.lme-events-grid {
    display: grid;
    gap: 20px;
}

.lme-event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s;
}

.lme-event-item:hover {
    border-color: var(--lme-gold);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.1);
}

.lme-event-date-badge {
    text-align: center;
    padding: 10px;
    background: var(--lme-event-date-badge-bg, #ff6600);
    color: #fff;
    border-radius: 8px;
}

.lme-event-date-badge .lme-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lme-event-date-badge .lme-day {
    display: block;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.lme-event-info h3 {
    margin: 0 0 8px;
    font-size: 1.4em;
    font-family: 'Playfair Display', serif;
}

.lme-event-info h3 a {
    color: var(--lme-event-title, #000);
    text-decoration: none;
    transition: color 0.3s;
}

.lme-event-info h3 a:hover {
    color: var(--lme-event-title, #000);
}

.lme-event-meta {
    color: var(--lme-event-meta, #000);
    font-size: 14px;
    margin: 0;
}

.lme-event-meta i {
    color: var(--lme-event-meta, #000);
    margin-right: 5px;
}

.lme-btn-view {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--lme-event-btn-border, #000);
    color: var(--lme-event-btn-text, #000);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.lme-btn-view:hover {
    background: var(--lme-event-btn-border, #000);
    color: #fff;
}

/* Past Events */
.lme-past-events-list {
    display: grid;
    gap: 12px;
}

.lme-past-event-item {
    padding: 15px 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--lme-gold);
    display: flex;
    align-items: center;
    gap: 20px;
}

.lme-past-date {
    font-weight: 600;
    color: var(--lme-gold);
    min-width: 100px;
}

.lme-past-event-item a {
    color: var(--lme-text);
    text-decoration: none;
    transition: color 0.3s;
}

.lme-past-event-item a:hover {
    color: var(--lme-gold);
}

@media (max-width: 640px) {
    .lme-event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lme-artist-name {
        font-size: 2em;
    }

    .lme-artist-events-section h2 {
        font-size: 1.5em;
    }
}

/* Event Badge */
.lme-event-badge {
    display: inline-block;
    background: var(--lme-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* Social Share Buttons */
.lme-social-share {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lme-share-label {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lme-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lme-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid;
    color: #fff;
}

.lme-share-btn i {
    color: #fff;
    font-size: 16px;
}

.lme-share-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.lme-share-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.lme-share-facebook {
    background: #1877F2;
    border-color: #1877F2;
}

.lme-share-facebook:hover {
    background: #1665D8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.lme-share-twitter {
    background: #000000;
    border-color: #000000;
}

.lme-share-twitter:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lme-share-linkedin {
    background: #0A66C2;
    border-color: #0A66C2;
}

.lme-share-linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.lme-share-email {
    background: #666;
    border-color: #666;
}

.lme-share-email:hover {
    background: #444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

@media (max-width: 768px) {
    .lme-social-share {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .lme-share-label {
        font-size: 12px;
    }

    .lme-share-buttons {
        width: 100%;
    }

    .lme-share-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 8px;
        font-size: 11px;
        min-width: 0;
    }
}