@charset "UTF-8";
/* CSS Document */

.blockfrontcontent-top-line {
    width: 150px;
    height: 7px;
    background-color: var(--default-color-green-light);
    margin-bottom: 20px;
}
.blockfrontcontent-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: clamp(1.25rem, 1.0046rem + 1.0471vw, 2.25rem);
    margin-bottom: 15px;
}
.blockfrontcontent-teaser {
    font-size: clamp(1rem, 0.8926rem + 0.4581vw, 1.4375rem);
    color: #ffffff;
}

.blockfrontcontent-photo {
    position: relative;
    text-align: right;
    padding-bottom: 15px;
    padding-right: 15px;
}
.blockfrontcontent-photo img {
    width: 100%;
    height: auto;
    filter: brightness(80%);
    transition: all 0.3s ease-in-out;
}
.blockfrontcontent-photo:hover img {
    filter: brightness(100%);
    transform: scale(1.15);
}
.blockfrontcontent-photo::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    right: 0px;
    bottom: 0px;
    background-color: var(--default-color-green-light);
}

.blockfrontcontent-photo-inner-inner {
    overflow: hidden;
}