<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

global $post;
?>

<div class="jmt-card">

    <div class="jmt-card-image">
        <a href="<?php the_permalink(); ?>">
            <?php the_post_thumbnail( 'large' ); ?>
        </a>
    </div>

    <div class="jmt-card-content">

        <div class="jmt-location">
            <?php echo get_the_term_list( get_the_ID(), 'destination', '', ', ' ); ?>
        </div>

        <h2 class="jmt-title">
            <a href="<?php the_permalink(); ?>">
                <?php the_title(); ?>
            </a>
        </h2>

        <a class="jmt-btn" href="<?php the_permalink(); ?>">
            View Safari
        </a>

    </div>

</div>

/* ============================
   JourneyMark Extra Styles
============================ */

.jmt-badge{
    display:inline-block;
    padding:6px 14px;
    margin-bottom:15px;
    background:#d4af37;
    color:#fff;
    font-size:12px;
    font-weight:700;
    border-radius:50px;
    text-transform:uppercase;
}

.jmt-meta{
    margin-top:18px;
    font-size:14px;
    color:#fff;
}

.jmt-price{
    margin-top:20px;
    margin-bottom:20px;
    color:#fff;
    font-size:15px;
}

.jmt-price strong{
    display:block;
    margin-top:5px;
    font-size:28px;
    font-weight:700;
    color:#fff;
}

