/* Basis-Styling für das APS Hero Widget */

.aps-hero-widget-container {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.aps-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.aps-hero-text {
    position: relative;
    z-index: 2;
  font-family: "Playfair Display", serif;
    text-align: center;
    padding: 20px;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aps-hero-text p {
    margin: 0.5em 0;
    line-height: 1.2;
}

.aps-line-1 {
        text-shadow:2px 3px 6px rgb(0 0 0 / 99%);
    font-size: 71px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: bold;
}

.aps-line-2 {
        text-shadow: 2px 3px 6px rgb(0 0 0 / 99%);
    font-size: 71px;
    font-weight: bold;
		margin-bottom:0 !important;
}

.aps-line-3 {
        text-shadow: 2px 3px 6px rgb(0 0 0 / 99%);
    font-size: 71px;
    font-weight: bold;
	margin-top:0 !important;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    .aps-line-2 {
        font-size: 2.0rem;
    }
    .aps-line-3 {
        font-size: 1.5rem;
    }
}