/* General Container Styling */
.ut-topdatings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /*max-width: 1000px;*/
    margin: 0 auto;
}

.ut-topdating {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ut-topdating-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Main content layout with image, description, rating, and button */
.ut-topdating-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Left: Image */
.ut-topdating-image {
    flex-basis: 30%; /* Increase image section width */
    max-width: 250px; /* Set a maximum width */
}

.ut-topdating-image img {
    width: 100%; /* Adjust to fill the available space */
    height: auto;
    border-radius: 8px;
}

/* Middle: Description */
.ut-topdating-description {
    flex: 1;
    padding-right: 20px; /* Add more space between the description and image */
    padding-left: 20px;
}

.ut-topdating-description p {
    font-size: 16px;
    color: #333;
}

/* Right: Rating and Button */
.ut-topdating-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-basis: 15%; /* Increase space for the rating area */
}

.rating-score {
    font-size: 36px;
    font-weight: bold;
    color: #E63B35;
    margin-bottom: 10px;
}

.ut-topdating-link {
    padding: 10px 20px;
    background-color: #E63B35;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.ut-topdating-link:hover {
    background-color: #d82a28;
}

/* Responsive behavior for smaller screens */
@media screen and (max-width: 768px) {
    .ut-topdating-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut-topdating-image {
        width: 100%;
    }

    .ut-topdating-rating {
        align-items: center;
        width: 100%;
    }

    .rating-score {
        font-size: 28px;
    }

    .ut-topdating-link {
        width: 50%;
        text-align: center;
    }
}
