/*
 * GoFly styles the destination post title against an H2 selector. The plugin
 * promotes that heading to H1 for semantics, so these rules retain the exact
 * desktop and responsive presentation used by the original widget.
 */
.destination-details-section .destination-details-content h1 {
    font-size: 50px;
    margin-bottom: 25px;
}

@media (max-width: 1199px) {
    .destination-details-section .destination-details-content h1 {
        font-size: 45px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .destination-details-section .destination-details-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .destination-details-section .destination-details-content h1 {
        font-size: 38px;
    }
}
