/* ================================
   BLOG CARDS RELACIONADOS
   ================================ */

.post-related-cards {
    margin-top: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-card-modern {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-modern-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card-modern-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card-modern:hover .blog-card-modern-img img {
    transform: scale(1.1);
}

.blog-card-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(35, 76, 29, 0.1), rgba(35, 76, 29, 0.6));
    transition: all 0.3s ease;
}

.blog-card-modern-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #b2d454;
    color: #234c1d;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-card-modern-date .day {
    font-size: 20px;
    margin-bottom: 2px;
}

.blog-card-modern-date .month {
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card-modern-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-modern-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(178, 212, 84, 0.15);
    color: #234c1d;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card-modern-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #234c1d;
    transition: all 0.3s ease;
}

.blog-card-modern:hover .blog-card-modern-title {
    color: #b2d454;
}

.blog-card-modern-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-card-modern-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: #234c1d;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-card-modern-btn:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-card-modern-btn:hover {
    color: #b2d454;
    text-decoration: none;
}

.blog-card-modern-btn:hover:after {
    transform: translateX(5px);
}

.related-posts-title {
    font-size: 32px;
    font-weight: 700;
    color: #234c1d;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.related-posts-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #b2d454;
    border-radius: 2px;
}