/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Container for dropdown filters */
.dropdown-filters {
    margin-bottom: 20px;
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dropdown-filters select {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Grid layout for filtered posts */
.filtered-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Card for each profile */
.profile-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    overflow: hidden;
    position: relative;
}

/* Profile Image */
.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Category label */
.profile-category {
    background-color: black;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 8px;
}

/* Name and company */
.profile-name {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
}

.profile-company {
    font-size: 14px;
    color: #2c6ac6;
    margin-bottom: 12px;
}

/* About Me button */
.profile-button {
    display: inline-block;
    background-color: #1d4ed8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.profile-button:hover {
    background-color: #2563eb;
}

/* Pagination buttons */
.pagination {
    margin-top: 30px;
    text-align: center;
	justify-content: center;
}

.pagination-btn {
    background: #e5e7eb;
    color: #111827;
    border: none;
    padding: 8px 14px;
    margin: 0 5px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.pagination-btn:hover {
    background: #d1d5db;
}

@media only screen and (max-width: 767px) {
	.dropdown-filters {
		grid-template-columns: 1fr;
	}
}