/*
Theme Name: Time Financing Service Child
Template: time-financing-service
Description: Child theme for Time Financing Service
Author: Evolve, Inc.
Version: 1.0.0
Text Domain: tfs-child-theme
*/

/* outer wrapper to constrain width and center */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* grid container */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* individual blog post cards */
.post-card {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.post-card img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
}

.post-card .content {
    padding: 1rem;
    flex: 1;
}

h2.post-card-title {
    padding: 0px;
}

.post-card-category-wrapper {
    padding: 10px 0px;
    font-size: 15px;
}

.post-card-category-label {
    font-weight: bold;
}

.post-card-category-text a {
    color: #fc990d;
    text-decoration: none;
}

.post-card-category-text a:hover {
    color: black;
    text-decoration: underline;
}

.post-card .entry-summary {
    margin-top: 8px;
}

a.post-card-read-more-link,
a.post-card-read-more-link:visited {
    color: black;
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
}

a.post-card-read-more-link:hover {
    font-weight: bolder;
}

/* collapse to one column on smaller screens */
@media (max-width: 840px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}
