.afnm-related-posts {
    margin: 30px 0;
    padding: 0px;
    background: #f7f7f7;
    border-radius: 10px;
}

.afnm-related-posts li {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0px !important;
}

.afnm-related-title {
    margin: 0 0 20px 0;
    padding: 10px !important;
    font-size: 16px !important;
    font-weight: 700;
    color: #3c4148;
    padding-bottom: 10px;
    margin-bottom: 0px !important;
    border-bottom: 2px solid #ededed;
}

.afnm-related-list {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 10px !important;
}

.afnm-related-item {
    list-style: none !important;
    list-style-type: none !important;
    margin-bottom: 10px !important;
}

.afnm-related-item:last-child {
    margin-bottom: 0;
}

.afnm-related-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #ededed;
}

.afnm-related-link:hover {
    background: #3c4148;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.afnm-related-icon {
    font-size: 18px;
    margin-right: 12px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.afnm-related-link:hover .afnm-related-icon {
    transform: translateX(3px);
}

.afnm-related-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .afnm-related-posts {
        padding: 20px 15px;
    }

    .afnm-related-title {
        font-size: 16px;
    }

    .afnm-related-text {
        font-size: 15px;
    }

    .afnm-related-link {
        padding: 10px 12px;
    }
}