/* Hero Block Styles */

.block-preview-notice {
    padding: 20px;
    background: #f0f4f8;
    border-left: 4px solid #007cba;
    margin: 10px 0;
    border-radius: 4px;
}

.block-preview-notice .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #007cba;
    vertical-align: middle;
    margin-right: 8px;
}

.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-section.is-preview {
    min-height: auto;
    background: #f5f5f5;
    padding: 20px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 500px;
    display: none;
    align-items: center;
}

.hero-slide.is-active {
    display: flex;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 0;
    color: #fff;
}

.hero-slide__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-slide__subtitle {
    font-size: 1.125rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.btn--white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn--white:hover {
    background: #e53935;
    color: #fff;
    transform: translateY(-1px);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-dot.is-active {
    background: #fff;
    border-color: #fff;
}

.hero-filter {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    padding: 0 20px;
}

.hero-filter__inner {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-filter__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-stats {
    background: #e53935;
    padding: 30px 0;
    margin-top: 40px;
}

.hero-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.hero-stat {
    color: #fff;
}

.hero-stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat__label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 4px;
}
