.featured-cabin {
    display: block;
    position: relative;
    width: 285px;
    height: 185px;
    margin: 0 auto 3px auto;
    color: white;
    overflow: hidden;
}
.featured-cabin:hover,
.featured-cabin:focus {
    color: white;
}
.featured-cabin-name,
.featured-cabin-info {
    position: absolute;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    line-height: 1.5rem;
}
.featured-cabin-name {
    top: 0;
}
.featured-cabin-info {
    bottom: 0;
}

.featured-cabins {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    list-style-type: none;
    margin-left: 0;
}
.featured-cabins > li {
    width: 300px;
}
@media screen and (min-width: 1230px) {
    .featured-cabins {
        justify-content: center;
    }
    .featured-cabins > li {
        margin: 0 55px;
    }
}
.featured-cabins .cabin-photo img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

.featured-cabins .pricing-table li.title {
    background-color: #fdf5f2;
    color: #572316;
    font-weight: bold
}
.featured-cabins .bullet-item {
    background-color: #fdf5f2;
    color: #572316;
    text-align: left;
    border-bottom: 0;
    padding: 0 0 1rem 1rem;
    font-size: 1rem;
}
.featured-cabins .button {
    background-color: #2a160f;
    color: #e0cfad;
    margin: 0;
    width: 100%;
}
.featured-cabins li.cta-button {
    background-color: #fdf5f2;
    padding: 0;
}
.featured-cabins ul.pricing-table {
    border-radius: 10px;
    overflow: hidden;
}
@media screen and (max-width: 910px) {
    .featured-cabins > li {
        margin: auto;
    }
    .featured-cabins {
        flex-direction: column;
    }
}
