.card-custom {
    background-color: #fff4e6;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.profile-info {
    flex: 1;
    margin-left: 15px;
}

    .profile-info h5 {
        margin-bottom: 5px;
        font-weight: bold;
        color: #000;
    }

    .profile-info p {
        margin: 0;
        font-size: 15px;
        color: #fff;
        text-align: justify !important;
    }

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.follow-section {
    text-align: center;
    min-width: 80px;
}

    .follow-section .followers {
        font-weight: bold;
        font-size: 14px;
    }

.follow-btn {
    margin-top: 6px;
    padding: 4px 12px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .card-custom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info {
        margin-left: 0;
        margin-top: 10px;
    }

    .follow-section {
        margin-top: 10px;
    }
}