#offers-section {
    height: auto!important;;
    background-color: #1C1C1C;
    padding-top: 100px;
    padding-bottom: 150px;
}

#offers-section .offers-section-title {
    font-size: 32px;
    color: white;
    text-align: center;
    margin: 0px 0px 40px 0px;
}

#angebote {
    width: calc(100% - 400px);
    height: auto;
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#angebote > .box {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#angebote > .box > .image {
    width: 100%;
    height: 400px;
    background-image: url(../../../public/assets/home/1705760909887.jpg);
    background-size: 240%;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#angebote > .box > .text {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
    text-align: center;
}

#angebote > .box > .text > .title {
    font-size: 24px;
    position: relative;
}

#angebote > .box > .text > .price {
    font-size: 14px;
    position: relative;
}

#angebote > .box > .text > .description {
    font-size: 16px;
    padding: 10px 20px;
    text-align: left;
    margin-top: 20px;
}

#angebote > .box > .text > .button {
    margin-top: auto;
    padding: 20px;
}

#angebote > .box > .text > .button a {
    background: #8F0101;
    padding: 10px 20px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
}

#angebote > .box > .text > .button a:hover {
    background: #9B1B1B;
}

@media all and (max-width: 1350px) {
    #angebote {
        width: calc(100% - 40px);
        grid-template-columns: repeat(1, 1fr);
    }
}