/* Flüge */
.teaser-flights {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    cursor: pointer;
}

.info-area-left {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.info-area-right {
    text-align: right;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E74C3C;
}

/* Mietwagen */
.yps-car-container {
    width: 100%;
    padding: 20px 0;
    font-size: 1.1rem;
}

.yps-car-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.yps-car-item {
    width: calc(33.3% - 20px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.yps-car-item:hover {
    transform: scale(1.05);
}

.yps-car-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.yps-car-item-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.yps-car-item-content {
    padding: 15px;
    text-align: left;
}

.yps-car-item-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.yps-car-item-carname {
    font-size: 1.2rem;
    font-weight: bold;
}

.yps-car-item-similiar {
    font-size: 1rem;
    color: #666;
}

.yps-car-item-equip {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.common_carIcon {
    display: flex;
    align-items: center;
    font-size: 1rem;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    padding-left: 25px;
}

.common_carIcon__label {
    margin-left: 5px;
    font-weight: bold;
}

.cars-icon-user {
    background-image: url('https://www.inurlaub.ch/images/icons/user.svg');
}

.cars-icon-doors {
    background-image: url('https://www.inurlaub.ch/images/icons/doors.svg');
}

.cars-icon-ac {
    background-image: url('https://www.inurlaub.ch/images/icons/ac.svg');
}

.cars-icon-manual-gear {
    background-image: url('https://www.inurlaub.ch/images/icons/manual-gear.svg');
}

.cars-icon-automatic-gear {
    background-image: url('https://www.inurlaub.ch/images/icons/automatic-gear.svg');
}

.yps-car-item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #E74C3C;
    text-align: right;
}

.yps-car-item-price span {
    font-size: 1.2rem;
}

/* Pauschalreisen Hotel */
.teaser-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.offer {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    width: calc(33.3% - 20px);
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.offer:hover {
    transform: scale(1.03);
}

.img {
    background-size: cover;
    background-position: center;
    height: 220px;
}

.offer h3 {
    margin: 0;
    padding: 10px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 1rem;
}

.content {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

p {
    margin: 0px;
    padding-bottom: 10px;
}

.hotelname {
    font-weight: bold;
    font-size: 1.1rem;
    color: #004a3e;
}

.category {
    display: flex;
    gap: 5px;
}

.category i {
    color: #FFD700;
}

.offer-description {
    color: #333;
}

.price {
    font-size: 1.1rem;
    color: #000;
}

.price span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E74C3C;
}

@media (max-width: 768px) {
    .yps-car-grid {
        justify-content: center;
    }
    .yps-car-item {
        width: 100%;
    }

    .teaser-horizontal {
        justify-content: center;
    }
    .offer {
        width: 100%;
    max-width: 330px;
    }
}
