/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./src/styles/blocks.css ***!
  \*******************************************************************************************************************/
/**
 * Frontend block styles
 * Styles for blocks on the frontend
 */

/* Tabbed Content Block - Text Colors */
.esper-tabbed-content-block .esper-tab-content-headline,
.wp-block-esper-tabbed-content-block .esper-tab-content-headline {
    color: #000000 !important;
}

.esper-tabbed-content-block .esper-tab-content-text,
.wp-block-esper-tabbed-content-block .esper-tab-content-text,
.esper-tabbed-content-block .esper-tab-content-text p,
.wp-block-esper-tabbed-content-block .esper-tab-content-text p {
    color: #000000 !important;
}

/* Tabbed Content Block - Paragraph Spacing */
.esper-tabbed-content-block .esper-tab-content-text p,
.wp-block-esper-tabbed-content-block .esper-tab-content-text p {
    margin-bottom: 1rem;
}

.esper-tabbed-content-block .esper-tab-content-text p:last-child,
.wp-block-esper-tabbed-content-block .esper-tab-content-text p:last-child {
    margin-bottom: 0;
}

/* Tabbed Content Block - List Styling */
.esper-tabbed-content-block .esper-tab-content-text ul,
.wp-block-esper-tabbed-content-block .esper-tab-content-text ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #000000;
}

.esper-tabbed-content-block .esper-tab-content-text ul li,
.wp-block-esper-tabbed-content-block .esper-tab-content-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #000000;
}

.esper-tabbed-content-block .esper-tab-content-text ul li:last-child,
.wp-block-esper-tabbed-content-block .esper-tab-content-text ul li:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.esper-tabbed-content-block .esper-tab-content-text ul ul,
.wp-block-esper-tabbed-content-block .esper-tab-content-text ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    list-style-type: circle;
}

.esper-tabbed-content-block .esper-tab-content-text ul ul ul,
.wp-block-esper-tabbed-content-block .esper-tab-content-text ul ul ul {
    list-style-type: square;
}

/* Media Text Block - Paragraph Spacing */
.esper-media-text-block .esper-media-text-content p,
.wp-block-esper-media-text-block .esper-media-text-content p {
    margin-bottom: 1rem;
}

.esper-media-text-block .esper-media-text-content p:last-child,
.wp-block-esper-media-text-block .esper-media-text-content p:last-child {
    margin-bottom: 0;
}

/* Media Text Block - List Styling */
.esper-media-text-block .esper-media-text-content ul,
.wp-block-esper-media-text-block .esper-media-text-content ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #000000;
}

.esper-media-text-block .esper-media-text-content ul li,
.wp-block-esper-media-text-block .esper-media-text-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #000000;
}

.esper-media-text-block .esper-media-text-content ul li:last-child,
.wp-block-esper-media-text-block .esper-media-text-content ul li:last-child {
    margin-bottom: 0;
}

/* Nested lists for Media Text Block */
.esper-media-text-block .esper-media-text-content ul ul,
.wp-block-esper-media-text-block .esper-media-text-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    list-style-type: circle;
}

.esper-media-text-block .esper-media-text-content ul ul ul,
.wp-block-esper-media-text-block .esper-media-text-content ul ul ul {
    list-style-type: square;
}

/* Example Block Frontend Styles */
.wp-block-esper-example-block {
    padding: 30px;
    border: 2px solid #0073aa;
    border-radius: 8px;
    background: #fff;
    margin: 20px 0;
}

.wp-block-esper-example-block .example-block__title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.wp-block-esper-example-block .example-block__content {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.wp-block-esper-example-block .example-block__button .button {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.wp-block-esper-example-block .example-block__button .button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Reusable Button Class - matches main.css */
.btn {
    display: inline-block;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration-line: none;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.btn {
    letter-spacing: 0.15em;
    border-radius: 0;
}

/* Hero Video Block Loading Spinner */
.hero-video-loader {
    background-color: rgba(17, 24, 39, 0.9); /* bg-gray-900 with opacity */
}

.hero-video-loader > div {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Testimonial Block Animation Styles */
/* Animation keyframes for testimonial circles */
@keyframes slideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply animations when element has animate class and data-animate attribute */
.animate[data-animate="slide-right"] {
    animation: slideRight 2s ease-out forwards;
    transform: translateX(-100%);
    opacity: 0;
}

.animate[data-animate="slide-left"] {
    animation: slideLeft 2s ease-out forwards;
    transform: translateX(100%);
    opacity: 0;
}

.animate[data-animate="fade"] {
    animation: fadeIn 2s ease-out forwards;
    opacity: 0;
}

/* Image Carousel Block Styles */
.esper-image-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.esper-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.esper-carousel-slider {
    width: 100%;
}

.esper-carousel-slide {
    padding: 0 10px;
    box-sizing: border-box;
    height: auto;
    /* Aspect ratio will be set dynamically via JavaScript based on data-aspect-ratio */
}

.esper-carousel-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.esper-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

/* Slick carousel customizations */
.esper-image-carousel .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.esper-image-carousel .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.esper-image-carousel .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.esper-image-carousel .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.esper-image-carousel .slick-slide.slick-active {
    display: block;
}

/* Navigation Arrows */
.esper-image-carousel .slick-prev,
.esper-image-carousel .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 50px !important;
    height: 50px !important;
    background: #FFC715 !important; /* Esper yellow */
    border: 2px solid #FFC715 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    /* Hide Slick's default arrow content */
    text-indent: 0 !important;
    /* Reset any Slick default styles */
    padding: 0 !important;
    margin: 0 !important;
    color: transparent !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide Slick's default arrow icons (::before pseudo-elements) - must be very specific */
.esper-image-carousel .slick-prev::before,
.esper-image-carousel .slick-next::before,
.esper-image-carousel button.slick-prev::before,
.esper-image-carousel button.slick-next::before {
    display: none !important;
    content: '' !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    background: none !important;
}

.esper-image-carousel .slick-prev::after,
.esper-image-carousel .slick-next::after,
.esper-image-carousel button.slick-prev::after,
.esper-image-carousel button.slick-next::after {
    display: none !important;
    content: '' !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    background: none !important;
}

/* Ensure our custom icons are visible and properly styled */
.esper-image-carousel .slick-prev-icon,
.esper-image-carousel .slick-next-icon {
    display: block !important;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.esper-image-carousel .slick-prev:hover,
.esper-image-carousel .slick-next:hover {
    background: #FFD84D; /* Lighter yellow on hover */
    border-color: #FFD84D;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.esper-image-carousel .slick-prev:active,
.esper-image-carousel .slick-next:active {
    transform: translateY(-50%) scale(0.95);
}

.esper-image-carousel .slick-prev {
    left: 20px;
}

.esper-image-carousel .slick-next {
    right: 20px;
}

.esper-image-carousel .slick-prev-icon,
.esper-image-carousel .slick-next-icon {
    width: 0;
    height: 0;
    border-style: solid;
}

.esper-image-carousel .slick-prev-icon {
    border-width: 8px 12px 8px 0;
    border-color: transparent #000000 transparent transparent;
    margin-left: -4px;
}

.esper-image-carousel .slick-next-icon {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #000000;
    margin-right: -4px;
}

/* Hide arrows when disabled */
.esper-image-carousel[data-show-arrows="false"] .slick-prev,
.esper-image-carousel[data-show-arrows="false"] .slick-next {
    display: none !important;
}

/* Override Slick's disabled state - keep arrows visible even when disabled */
.esper-image-carousel .slick-prev.slick-disabled,
.esper-image-carousel .slick-next.slick-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: auto !important;
}

/* Ensure arrows are always visible when showArrows is true */
.esper-image-carousel[data-show-arrows="true"] .slick-prev,
.esper-image-carousel[data-show-arrows="true"] .slick-next {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Dots */
.esper-image-carousel .slick-dots {
    position: absolute !important;
    bottom: -40px !important;
    display: flex !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.esper-image-carousel .slick-dots li {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.esper-image-carousel .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.esper-image-carousel .slick-dots li.slick-active button,
.esper-image-carousel .slick-dots li button:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.esper-image-carousel.bg-yellow-400 .slick-dots li button {
    border-color: rgba(0, 0, 0, 0.5);
}

.esper-image-carousel.bg-yellow-400 .slick-dots li.slick-active button,
.esper-image-carousel.bg-yellow-400 .slick-dots li button:hover {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(0, 0, 0, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .esper-image-carousel .slick-prev,
    .esper-image-carousel .slick-next {
        width: 45px;
        height: 45px;
    }

    .esper-image-carousel .slick-prev-icon {
        border-width: 7px 10px 7px 0;
    }

    .esper-image-carousel .slick-next-icon {
        border-width: 7px 0 7px 10px;
    }

    .esper-image-carousel .slick-prev {
        left: 10px;
    }

    .esper-image-carousel .slick-next {
        right: 10px;
    }
}

/* Image Accordion Block Styles */
.esper-image-accordion {
    position: relative;
    width: 100%;
}

.esper-accordion-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    align-self: flex-start;
    height: auto;
}

.esper-accordion-image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.esper-accordion-tab {
    position: relative;
    outline: none;
}

.esper-accordion-tab:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.esper-accordion-tab:focus {
    outline: none;
}

.esper-accordion-content-wrapper {
    transition: max-height 0.3s ease;
    overflow: hidden;
}

.esper-accordion-content-wrapper[style*="overflow: visible"] {
    overflow: visible !important;
}

/* Ensure open accordion items stay open */
.esper-accordion-content-wrapper[style*="max-height: 5000px"] {
    max-height: 5000px !important;
}

.esper-accordion-content {
    padding-top: 0;
}

/* Border adjustments for different background colors */
.esper-image-accordion.bg-white .esper-accordion-tab,
.esper-image-accordion.bg-gray-200 .esper-accordion-tab {
    border-color: rgba(0, 0, 0, 0.1);
}

.esper-image-accordion.bg-esper-yellow .esper-accordion-tab {
    border-color: rgba(0, 0, 0, 0.1);
}

.esper-image-accordion.bg-esper-black .esper-accordion-tab {
    border-color: rgba(255, 255, 255, 0.1);
}

.esper-image-accordion.bg-esper-black .esper-accordion-tab:hover {
    background-color: rgba(255, 255, 255, 0.05);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .esper-accordion-image-container {
        aspect-ratio: 16 / 9;
    }
}

/* Tabbed Content Block Styles */
.esper-tabbed-content-block {
    width: 100%;
}

.esper-tabbed-content-block .tabs-nav {

}

.esper-tabbed-content-block .tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.esper-tabbed-content-block .tabs-nav::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.esper-tabbed-content-block .tabs-nav::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.esper-tabbed-content-block .tab-button {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    color: #ffffff;
}

.esper-tabbed-content-block .tab-button:hover {
    color: #ffffff;
}

.esper-tabbed-content-block .tab-button.active,
.esper-tabbed-content-block .tab-button[aria-selected="true"] {
    border-bottom-color: #FFC715;
    color: #ffffff;
    font-weight: 700;
}

.esper-tabbed-content-block .tabs-content {
    width: 100%;
}

.esper-tabbed-content-block .tab-panel {
    display: none;
}

.esper-tabbed-content-block .tab-panel.active {
    display: block;
}

.esper-tabbed-content-block .grid {
    display: grid;
    gap: 0;
}

.esper-tabbed-content-block .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.esper-tabbed-content-block .image-container {
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.esper-tabbed-content-block .image-container[style*="aspect-ratio"] {
    min-height: 0;
    height: auto;
}

.esper-tabbed-content-block .image-container img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
}

.esper-tabbed-content-block .image-container[style*="aspect-ratio"] img {
    min-height: 0;
}

/* Ensure image container matches content height on desktop */
@media (min-width: 768px) {
    .esper-tabbed-content-block .grid-cols-1.md\:grid-cols-2 > .image-container {
        height: 100%;
    }
    
    .esper-tabbed-content-block .grid-cols-1.md\:grid-cols-2 > div:first-child {
        min-height: 400px;
    }
}

/* Responsive adjustments for tabbed content */
@media (min-width: 768px) {
    .esper-tabbed-content-block .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .esper-tabbed-content-block .md\:p-12 {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .esper-tabbed-content-block .grid {
        grid-template-columns: 1fr;
    }
    
    .esper-tabbed-content-block .image-container {
        min-height: 300px;
        order: -1; /* Image first on mobile */
    }
    
    .esper-tabbed-content-block .tab-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* Product Spec Block Styles */
.esper-product-spec-block {
    width: 100%;
}

.esper-product-spec-block .block-title {
    margin-bottom: 2rem;
}

.esper-product-spec-block .tabs-container {
    width: 100%;
}

.esper-product-spec-block .tabs-content {
    width: 100%;
}

.esper-product-spec-block .tab-panel {
    display: none;
}

.esper-product-spec-block .tab-panel.active {
    display: block;
}

.esper-product-spec-block .image-section {
    position: relative;
}

.esper-product-spec-block .image-container {
    position: relative;
    width: 100%;
}

.esper-product-spec-block .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Labels */
.esper-product-spec-block .image-label {
    cursor: pointer;
    z-index: 10;
}

.esper-product-spec-block .image-label .label-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.esper-product-spec-block .image-label:hover .label-number {
    transform: scale(1.2);
}

/* Text Details */
.esper-product-spec-block .text-details {
    padding: 1rem 0;
}

.esper-product-spec-block .label-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
}

.esper-product-spec-block.bg-esper-black .label-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.esper-product-spec-block .label-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    border: none;
    flex-shrink: 0;
}

.esper-product-spec-block .labels-list {
    max-height: 600px;
    overflow-y: auto;
}

/* Tab Navigation (under image) */
.esper-product-spec-block .tabs-nav-wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .esper-product-spec-block .tabs-nav-wrapper {
        grid-column: 1;
        max-width: 50%;
    }
}

.esper-product-spec-block .tabs-nav {
    display: flex;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.esper-product-spec-block .tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.esper-product-spec-block .tabs-nav::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.esper-product-spec-block .tabs-nav::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.esper-product-spec-block .tab-button {
    /* Use btn class styles - don't override background */
    white-space: nowrap;
    cursor: pointer;
    /* Remove border-bottom from btn class for this block */
    border-bottom: none !important;
    /* Ensure transitions work */
    transition: all 0.2s ease !important;
}

.esper-product-spec-block .tab-button:hover {
    opacity: 0.9;
}

/* Active tab - bg-black - must have high specificity and override btn class */
.esper-product-spec-block .tabs-nav .tab-button.bg-esper-black,
.esper-product-spec-block .tab-button.bg-esper-black,
.esper-product-spec-block .tabs-nav button.tab-button.bg-esper-black,
.esper-product-spec-block button.tab-button.bg-esper-black,
.esper-product-spec-block .tabs-nav .btn.tab-button.bg-esper-black,
.esper-product-spec-block .btn.tab-button.bg-esper-black {
    background-color: #000000 !important;
    background: #000000 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
}

.esper-product-spec-block .tabs-nav .tab-button.bg-esper-black:hover,
.esper-product-spec-block .tab-button.bg-esper-black:hover,
.esper-product-spec-block .tabs-nav button.tab-button.bg-esper-black:hover,
.esper-product-spec-block button.tab-button.bg-esper-black:hover {
    background-color: #1f2937 !important;
    background: #1f2937 !important;
}

/* Inactive tab - bg-white - must have high specificity */
.esper-product-spec-block .tabs-nav .tab-button.bg-white,
.esper-product-spec-block .tab-button.bg-white {
    background-color: #ffffff !important;
    background: #ffffff !important;
    border: 2px solid #d1d5db !important;
    color: #4b5563 !important;
}

.esper-product-spec-block .tabs-nav .tab-button.bg-white:hover,
.esper-product-spec-block .tab-button.bg-white:hover {
    border-color: #9ca3af !important;
    color: #000000 !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .esper-product-spec-block .grid {
        grid-template-columns: 1fr;
    }
    
    .esper-product-spec-block .tab-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .esper-product-spec-block .label-number-badge {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}



/*# sourceMappingURL=blocks-style.css.map*/