/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
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.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1739459202
Updated: 2025-02-13 16:06:42

*/

/* Accordion images */
.hidden-img {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}

.visible-img {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.2s;
}

/* Calendar styling */
.calendar-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 15px;
}

.calendar-container--homepage {
	width: 100%;
	gap: 24px;
	margin-top: 32px;
	margin-bottom: 24px;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(1, 1fr);
}

.calendar-box {
	padding: 16px;
	border-radius: 12px;
	min-height: 216px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 14px;
	background-color: #F9F6D7;
}

.calendar-box--homepage {
	min-height: 267px;
}

.calendar-box--homepage:first-child {
	transform: rotate(-4.32deg);
}

.calendar-box--empty, .calendar-box--empty--homepage {
	background-color: #F9F6D740;
}

.calendar-box__date-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.calendar-box__day {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

.calendar-box__day--monday, .calendar-box__date--monday, .calendar-box__day--friday, .calendar-box__date--friday {
	color: #F2B630;
}

.calendar-box__day--tuesday, .calendar-box__date--tuesday {
	color: #6B6BFF;
}

.calendar-box__day--wednesday, .calendar-box__date--wednesday {
	color: #75D165;
}

.calendar-box__day--thursday, .calendar-box__date--thursday {
	color: #E95A29;
}

.calendar-box__date {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

.calendar-box__summary-section {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.calendar-box__summary-container {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.calendar-box__time {
	font-size: 12px;
	line-height: normal;
	margin: 0;
}

.calendar-box__time--homepage {
	font-size: 16px;
}

.calendar-box__summary {
	font-size: 13px;
	font-weight: 700;
	line-height: normal;
	margin: 0;
}

.calendar-box__summary--homepage {
	font-size: 18px;
}

@media (max-width: 1024px) {
    .calendar-container {
		grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: row;
    }
	
	.calendar-container--homepage {
		grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
	}
}

@media (max-width: 767px) {
    .calendar-container {
		grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
    }
	
	.calendar-container--homepage {
		grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: row;
	}
	
	.calendar-box--empty {
		display: none;
	}
}

@media (max-width: 450px) {
    .calendar-container {
		grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: row;
    }
	
	.calendar-container--homepage {
		grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: row;
	}
	
	.calendar-box--empty--homepage {
	  	display: none;
	}
}
