:root {

}



.car_headline__container {
    justify-content: center;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    padding: 50px 60px;
    display: flex;
    width: 100%;
    gap: 20px;
}

.car_headline__container > .car_headline__title {
    width: 100%;
    text-align: start;
    margin: 0;
    font-size: 42px;
    font-weight: 500;
    color: var(--base-text-color);
}


.car_headline__container > .car_headline__price {
    width: 100%;
    text-align: end;
    font-size: 28px;
    font-weight: 400;
    color: var(--base-text-color);
}


span.bold {
    font-weight: bold;
    font-size: 38px;
    color: var(--base-accient-color);
}

.car_headline__container > .car_headline__rent {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 100%;
}

.car_headline__container > .car_headline__rent > .car_headline__button {
    background: var(--base-accient-color);
    color: var(--base-text-color);
    min-width: 200px;
    padding: 12px 50px;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.car_headline__container > .car_headline__rent > .car_headline__button:hover {
    background: var(--base-accient-color-hover);
}


.car_headline__container > .car_headline__subtitle {
    width: 100%;
    text-align: start;
    margin: 0;
    font-size: 34px;
    font-weight: 400;
    color: var(--base-text-color);
}

.car_headline__container > .car_headline__description {
    white-space: break-spaces;
    width: 100%;
    align-items: start;
    font-size: 18px;
    font-weight: 300;
    color: var(--base-text-color);
}

.car_headline__container > .car_headline__features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.car_headline__container > .car_headline__features > .car_headline__feature {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.car_headline__container > .car_headline__features > .car_headline__feature > .car_headline__feature_label {
    font-size: 20px;
    font-weight: 300;
    color: var(--base-text-color);
}

.car_headline__container > .car_headline__features > .car_headline__feature > .car_headline__feature_value {
    font-size: 24px;
    font-weight: 500;
    color: var(--base-accient-color);
}
