/* 
Theme Name: Splendid Tutoring
Theme URI: http://splendidtutoring.com/
Description: Splendid Tutoring Theme
Author: Splendid Tutoring
Author URI: http://splendidtutoring.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 */

.elementor-widget-text-editor ul {
    padding: 0;
    list-style: inside;
}
.faq .e-n-accordion-item {border-radius: 10px;overflow: hidden;border: 1px solid #EEECFC;box-shadow: 0 20px 20px 0 #000A630A;}
:is(.single-subject ,.archive.tax-subject-category) .inner-hero-excerpt {
    display: none;
}
.posts-in-cat .elementor-grid {
    grid-template-columns: repeat(1,1fr);
}
.posts-in-cat ul {
    list-style: none;
}
.posts-in-cat ul li a{
	color:var(--e-global-color-text);
}
.locations-loop ul {
    list-style: none;
    padding-left: 20px;
}
.backdrop {
    backdrop-filter: blur(8px);
    background-color: rgb(255 255 255 / 15%);
}

/* Responsive Grid Container */
        .locations-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            width: 100%;
        }

        /* Tablet View */
        @media (max-width: 1024px) {
            .locations-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        /* Mobile View */
        @media (max-width: 640px) {
            .locations-container {
                grid-template-columns: 1fr;
            }
        }

        /* Individual Card Styling */
        .location-card {
            background-color: #F4F2FF;
            border: 1px solid #E0E0EB;
            border-radius: 16px;
            padding: 28px 20px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Optional Hover Effect for Dynamic Feel */
        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(59, 75, 196, 0.08);
        }

        .location-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .icon-wrapper {
            background-color: #000A631A;
            color: var(--e-global-color-primary);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .icon-wrapper svg {
            width: 16px;
            height: 16px;
        }

        .location-title {
			
			text-transform: uppercase;
			letter-spacing: 0.5px;
			margin: 0;
		}
		.location-title a{
		    color: var(--e-global-color-text);
		}

        .areas-served-subtitle {
            color: var(--text-subtitle);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .areas-list {
			list-style: none;
			padding: 0;
		}

        .areas-list li {
            color: var(--e-global-color-text);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            line-height: 1.4;
        }
		.areas-list li a {
		    color: var(--e-global-color-text);
		}

        /* Custom small dot bullet point */
        .areas-list li::before {
            content: "";
            display: inline-block;
            width: 5px;
            height: 5px;
            background-color: var(--e-global-color-primary);
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .areas-list li:last-child {
            margin-bottom: 0;
        }