.irp-related-posts {
    margin: 20px 0;
    background: none;
    border: none;
    padding: 0;
    text-align: left; /* Left align the text */
}

.irp-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FF69B4; /* Pink color for the title */
}

.irp-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, #FFDEE9, #B5FFFC);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.irp-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.irp-post-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.irp-post-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.irp-post-content {
    display: flex;
    flex-direction: column;
}

.irp-post-content h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #333;
}

.irp-read-more {
    display: inline-block;
    padding: 5px 10px;
    margin-top: 5px;
    background-color: #FF69B4;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
}

.irp-read-more:hover {
    background-color: #FF1493;
}