.excursions {
    justify-content: center;
}

.excursions-post {
    border: #222;
    padding: 1.8em 1.8em;
    margin: 0 1.8em;
    background-color: rgb(73, 71, 71);
    border-radius: 1%;
}

.excursions-post p {
    line-height: 1em;
}

.excursions-post a {
    font-weight: bold;
    color: #fff
}

.excursions-post img {
    width: 25em;
    height: auto;
}

.excursions-post h3, .excursions-post h4, .excursions-post h5 {
    font-family: "Gabriola";
} 

.excursions-post h3 {
    font-size: 1.7em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.excursions-post h5 {
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.excursions-detail {
    font-family: "Gabriola";
    font-size: 1.4rem;
    color: #fff;
    text-align: left;
}

.excursions-detail p {
    text-align: justify;
    margin: 0.9rem 0 0.3rem 0;
}

.excursions-detail ul,li {
    margin: 0.3rem 0 .3rem 0;
    line-height: 1em;
}

/* Estilos base para imágenes */
figure {
  margin: .5rem 0;
  max-width: 100%;
}

figure img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Alineaciones */
.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.img-left, .img-right {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
  }

/* Clearfix para contenedores */
.content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}


@media screen and (min-width: 1024px) {
    .excursions {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .excursions-post img {
        width: 60em;
    }
    
    .excursions-detail {
        font-size: 3.2rem;
        line-height: 1.6em;
    }

    .excursions-post h3 {
        font-size: 2.0em;
    }

    .excursions-post h5 {
        font-size: 1.7em;
    }

    figure {
        overflow: hidden;
        margin: 1.5rem 0;
        max-width: 100%;
    }

    figure img {
        max-width: 90%;
    }

    .img-left {
        float: left;
        margin-right: 1.5rem;
        max-width: 40%;
    }

    .img-right {
        float: right;
        margin-left: 1.5rem;
        max-width: 40%;
    }
}