.smartlink-ai-read-more {
    border: 1.5px dashed #d3d3d3;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    margin: 20px 0;
    background: #fff;
    position: relative;
}

.smartlink-ai-read-more img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 12px;
    object-fit: cover;
}

.smartlink-ai-read-more-content {
    display: flex;
    flex-direction: column;
}

.smartlink-ai-heading {
    font-size: 13px;
    font-weight: bold;
    color: #d32f2f;
    text-transform: uppercase;
    position: absolute;
    top: -10px; /* Moves Also Read Inside the Border */
    left: 10px;
    background: #fff;
    padding: 0 5px;
}

.smartlink-ai-read-more a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}

.smartlink-ai-read-more a:hover {
    color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 600px) {
    .smartlink-ai-read-more {
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }

    .smartlink-ai-read-more img {
        width: 40px;
        height: 40px;
    }

    .smartlink-ai-read-more a {
        font-size: 14px;
    }

    .smartlink-ai-heading {
        font-size: 12px;
        top: -8px; /* Adjust for Mobile */
    }
}
