/* Banner Block Styles */
/* This block uses Tailwind CSS extensively with minimal custom CSS */
/* Most layout, spacing, colors use Tailwind utilities in the component files */

/* Button theme integration - uses CSS custom properties from Theme Settings */
/* Using hero-button classes and CSS variables for compatibility with Theme Settings */
.banner-block .hero-button {
    display: inline-block;
    padding: var(--hero-button-padding, 15px 35px);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: var(--hero-button-border-width, 2px) solid transparent;
    text-align: center;
}

.banner-block .hero-button-primary {
    background: var(--hero-button-primary-bg, #2271b1);
    color: var(--hero-button-primary-color, #ffffff);
    border-color: var(--hero-button-primary-border, #2271b1);
    font-family: var(--hero-button-primary-font-family, inherit);
    font-weight: var(--hero-button-primary-font-weight, 600);
}

.banner-block .hero-button-primary:hover {
    background: var(--hero-button-primary-bg-hover, #135e96);
    color: var(--hero-button-primary-color-hover, #ffffff);
    border-color: var(--hero-button-primary-border-hover, #135e96);
}

.banner-block .hero-button-secondary {
    background: var(--hero-button-secondary-bg, rgba(255, 255, 255, 0.2));
    color: var(--hero-button-secondary-color, #ffffff);
    border-color: var(--hero-button-secondary-border, rgba(255, 255, 255, 0.5));
    font-family: var(--hero-button-secondary-font-family, inherit);
    font-weight: var(--hero-button-secondary-font-weight, 600);
}

.banner-block .hero-button-secondary:hover {
    background: var(--hero-button-secondary-bg-hover, rgba(255, 255, 255, 0.3));
    color: var(--hero-button-secondary-color-hover, #ffffff);
    border-color: var(--hero-button-secondary-border-hover, rgba(255, 255, 255, 0.8));
}

.banner-block .hero-button-outline {
    background: var(--hero-button-outline-bg, transparent);
    color: var(--hero-button-outline-color, #ffffff);
    border-color: var(--hero-button-outline-border, #ffffff);
    font-family: var(--hero-button-outline-font-family, inherit);
    font-weight: var(--hero-button-outline-font-weight, 600);
}

.banner-block .hero-button-outline:hover {
    background: var(--hero-button-outline-bg-hover, rgba(255, 255, 255, 0.1));
    color: var(--hero-button-outline-color-hover, #ffffff);
    border-color: var(--hero-button-outline-border-hover, #ffffff);
}

/* Ensure banner block is properly positioned */
.banner-block {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Media layer */
.banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay layer */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Content layer */
.banner-content {
    position: relative;
    z-index: 3;
}

/* Heading divider styles */
.hr-decoration {
    background-color: var(--color--accent);
    width: 75px;
    height: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.align-center {
    margin-left: auto;
    margin-right: auto;
}