/* Desire Gym Custom Recent Post Blog CSS */

.dgym-recent-posts-wrapper {
    max-width: 100%;
    font-family: inherit;
}

.dgym-recent-posts-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: Poppins, sans-serif;
}

.dgym-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #cccccc;
}

.dgym-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dgym-post-thumbnail {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    overflow: hidden;
}

.dgym-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dgym-post-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.dgym-post-title a {
    color: #cc0000;
    text-decoration: none;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dgym-post-title a:hover {
    color: #990000;
}

.dgym-post-date {
    font-size: 13px;
    color: #888888;
    margin: 0;
}