main {
    margin: 0;
}

/* HERO */

div.hero {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--wp--preset--color--thrifty-main);
}

div.hero {
    display: flex;
    height: 50vh;
}

.hero-image {
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

div.hero-tag-container {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    
}

div.hero-tag-spacer {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
}

div.hero-tag-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 130px;
    color: white;
}

.hero-tag {
    font-size: 4rem;
}

.hero-desc {
    font-family: 'Avenir';
    font-size: 1.3rem;
}

@media (max-width: 600px) {
    .hero-desc {
        font-size: 1.2rem;
    }

    .hero-tag {
        font-size: 3rem
    }

    div.hero-tag-left {
        padding-top: 70px;
    }
}

/* Content */

div.outback-camping {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

div.outback-camping > div.container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

div.outback-camping-card{
    display: flex;
    flex-direction: column;
    font-family: 'Avenir';
    border: 1px solid #DEDEDE;
    border-radius: 20px;
    overflow: hidden;
    width: 48%;
}

@media (max-width: 600px) {
    div.outback-camping-card{
        width: 100%;
    }
}

div.card-header{
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-end;
}

img.card-header-image{
    width: 100%;
    height: 120px;
    object-fit: cover;
}

div.card-header-shadow{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .9) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
}

div.card-header-title{
    color: white;
    position: absolute;
    font-weight: 800;
    margin-left: 20px;
    margin-bottom: 5px;
}

div.card-body-content{
    margin: 20px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 10px;
}

div.card-body-row{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

div.card-body-row.bold{
    font-weight: 500;
}

div.card-body-content ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}