/* Blog Post Styling */

.pager {
    display: inline-block;
    padding-left: 0;
    list-style-type: none;
    border-radius: .1875rem
}

    .pager > li {
        display: inline;
        line-height: 1.2
    }

        .pager > li a,
        .pager > li span {
            float: left;
            height: 2.5rem;
            padding: .65rem 1rem;
            font-weight: 700;
            text-decoration: none;
            border: .0624rem solid #d5d5d5;
            border-left-width: 0;
            color: #2f3d3b
        }

            .pager > li a.Pagination-current, .pager > li span.Pagination-current {
                color: #fff;
                background-color: #2f3d3b;
                border-color: #2f3d3b
            }

            .pager > li a.Pagination-current, .pager > li a.Pagination-first, .pager > li a.Pagination-last, .pager > li a.Pagination-next, .pager > li a.Pagination-previous, .pager > li span.Pagination-current, .pager > li span.Pagination-first, .pager > li span.Pagination-last, .pager > li span.Pagination-next, .pager > li span.Pagination-previous {
                display: block
            }

@media (max-width:639px) {
    .pager > li a, .pager > li span {
        display: none
    }
}

.pager > li a:hover {
    color: #fff;
    background-color: #2f3d3b
}

.pager > li:first-child a, .pager > li:first-child span {
    border-left-width: .0624rem;
    border-radius: .1875rem 0 0 .1875rem
}

.pager > li:last-child a, .pager > li:last-child span {
    border-radius: 0 .1875rem .1875rem 0
}







.blogpost .Hero {
    background-color: white;
}

.blogpost .Hero-content {
    padding-top: 0;
    padding-bottom: 3rem;
}

    .blogpost .Hero-content:before {
        background-color: white;
    }

.blogpost .Hero--reverse .Hero-title {
    color: #2f3d3b;
}

.blogpost img {
    max-width: 890px;
    height: 100%;
    margin-bottom: 1.5rem;
}

.blogpost-credit {
    display: grid;
    grid-gap: 0.5rem;
    text-align: center;
}


.blogpost li {
    margin-bottom: 1rem;
}

.blogpost.blogpost.blogpost .author {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #b3b3b3;
    font-weight: normal;
    transition: color 0.3s ease;
}


    .blogpost.blogpost.blogpost .author:hover {
        color: #333;
        border-bottom: 1px solid #333;
    }

/* Blog Post Tags */
.blogpost-tags {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    grid-gap: 1rem;
}

/* Blog Card Styling */
.blog-card {
    text-decoration: none;
    color: initial !important;
    transition: 0;
}

    .blog-card .CaptionCard {
        background-color: white;
        border: 2px solid #f5f5f5;
        border-radius: 5px;
    }

    .blog-card .CaptionCard-photo {
        transition: all 0.3s ease;
    }

    .blog-card:hover .CaptionCard-photo {
        transform: scale(1.1);
    }

    .blog-card .blog-paragraph-container {
        transition: all 0.3s ease;
    }


.blog--card--first {
    transform: scale(1.1);
}

.blog-card--first .CaptionCard-right {
    padding: 2rem 4rem;
}

.blog-card--first .blog-paragraph-container {
    display: block;
    opacity: 1;
}

/* Blog Category Tags */
.blogcategory-tags {
    display: flex;
    align-items: center;
    grid-gap: 0.5rem;

   
}

@media (min-width: 640px) and (max-width: 1024px) {
    .blogcategory-tags {
        display: block;
    }
    .blogcategory-tags a {
      margin-bottom: 0.5rem;
    }
}


    .blogcategory-tags .Pill {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

        .blogcategory-tags .Pill:hover {
            color: initial;
            box-shadow: 0 0 1rem 0 rgba(47,61,59,.3)
        }

    .blogcategory-tags .Pill-label {
        margin-right: 0;
        text-decoration: none;
        color: inherit;
    }


    .blogcategory-tags .author {
        color: #555;
        text-decoration: none;
        border-bottom: 1px solid #b3b3b3;
        font-weight: normal;
        transition: color 0.3s ease;
    }

        .blogcategory-tags .author:hover {
            color: #333;
            border-bottom: 1px solid #333;
        }

    .blogcategory-tags .date {
        padding-right: 1rem;
    }

    /* Tripsmarts Nav */

    .Tripsmarts {
        background-color: #0df596;
        min-height: 50px;
        display: flex;
    }

        .Tripsmarts .Navbar-primary {
            display: flex;
            grid-gap: 0.5rem;
            justify-content: space-between;
        }

        .Tripsmarts .container {
            width: 1239px;
        }

        .Tripsmarts .Navbar-item {
            padding: 1rem 8px;
            place-self: center;
            text-decoration: none;
            transition: background !important;
        }

        .Tripsmarts .left {
            font-size: 1.5rem;
            text-decoration: none;
            height: 87.5px;
        }

        .Tripsmarts .right {
            display: flex;
            align-items: center;
            grid-gap: 1rem;
            height: 87.5px;
        }

            .Tripsmarts .right .Navbar-item:hover,
            .Tripsmarts .left .Navbar-item:hover {
                background-color: white;
                color: #2e3c3b;
                text-decoration: none;
                border: 0;
            }

    @media (max-width: 680px) {
        .Tripsmarts .left {
            font-size: 16px;
        }

        .Tripsmarts .container {
            padding-top: 0;
            width: 100%;
        }

        .Tripsmarts .Navbar-item {
            padding: 0;
            place-content: center;
        }

        .Tripsmarts .Navbar-primary {
            justify-content: center;
        }

        .Tripsmarts .left {
            height: 60px;
        }

        .Tripsmarts .right {
            grid-gap: 9px;
            height: 60px;
            font-size: 14px;
        }
    }

    /* Spacing and Utility Classes */
    .blog-spacer {
        margin-bottom: 1rem;
    }


    .blog-card {
        height: 100%;
    }
