/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */


/*SINGLE WRESTLER PAGE*/
.wrestler-profile-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.wrestler-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.wrestler-image {
    flex: 1;
}

.wrestler-profile-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #ddd;
}

.wrestler-details {
    flex: 2;
    text-align: left;
}

.wrestler-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.wrestler-details p {
    font-size: 18px;
    margin: 5px 0;
}