/**
 * Pachamama Theme Template Styles
 *
 * @package Pachamama
 */

.pm-archive-header {
	padding: 40px 20px;
	background: #f5f5f5;
	margin-bottom: 30px;
}

.pm-archive-title {
	margin: 0 0 10px;
}

.pm-archive-lead {
	color: #666;
	margin: 0;
}

.pm-archive-description {
	color: #666;
	margin: 0;
}

.pm-archive-filters {
	background: #fff;
	padding: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pm-filters-grid {
	display: grid;
	gap: 15px;
	align-items: end;
}

.pm-filters-grid--3 {
	grid-template-columns: 1fr 1fr auto;
}

.pm-filters-grid--2 {
	grid-template-columns: 1fr auto;
}

.pm-filters-grid--4 {
	grid-template-columns: 1fr 1fr 1fr auto;
}

.pm-filters-grid--auto {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
	.pm-filters-grid--5 {
		grid-template-columns: 1fr 1fr 1fr 1fr auto;
	}

	.pm-filters-grid--6 {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
	}
}

.pm-filter-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
}

.pm-filter-control {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.pm-filter-button {
	padding: 10px 30px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 700;
}

.pm-filter-reset {
	display: inline-block;
	padding: 10px 20px;
	margin-right: 10px;
	color: #666;
	text-decoration: none;
}

.pm-empty-state {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border-radius: 8px;
}

.pm-empty-state__text {
	font-size: 1.2em;
	color: #666;
}

.pm-empty-state__button {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 30px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

.pm-event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.pm-event-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pm-event-card__image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.pm-event-card__body {
	padding: 20px;
}

.pm-event-card__title {
	margin: 0 0 15px;
	font-size: 1.3em;
}

.pm-event-card__title a {
	color: #333;
	text-decoration: none;
}

.pm-event-card__box {
	background: #f9f9f9;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 15px;
}

.pm-event-card__label {
	color: #666;
	font-size: 0.85em;
	margin-bottom: 5px;
}

.pm-event-card__value {
	font-weight: 700;
}

.pm-event-card__excerpt {
	color: #666;
	margin: 0 0 15px;
	font-size: 0.95em;
}

.pm-event-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pm-event-card__price {
	font-size: 1.3em;
	font-weight: 700;
	color: #0073aa;
}

.pm-event-card__cta {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 10px 25px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 700;
}

.pm-entity-grid {
	display: grid;
	gap: 30px;
	margin-bottom: 40px;
}

.pm-entity-grid--min-280 {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pm-entity-grid--min-250 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.pm-entity-grid--min-300 {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.pm-entity-grid--min-350 {
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.pm-entity-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pm-entity-card--hover-lift {
	transition: transform 0.2s;
}

.pm-entity-card--hover-lift:hover {
	transform: translateY(-2px);
}

.pm-entity-card__image img {
	width: 100%;
	object-fit: cover;
}

.pm-entity-card__image--h200 img {
	height: 200px;
}

.pm-entity-card__image--h250 img {
	height: 250px;
}

.pm-entity-card__image--h280 img {
	height: 280px;
}

.pm-entity-card__body {
	padding: 20px;
}

.pm-entity-card__title {
	margin: 0 0 10px;
	font-size: 1.3em;
}

.pm-entity-card__title--lg {
	font-size: 1.4em;
}

.pm-entity-card__title a {
	color: #333;
	text-decoration: none;
}

.pm-entity-card__muted {
	color: #666;
}

.pm-entity-card__meta {
	margin: 0 0 10px;
}

.pm-entity-card__excerpt {
	color: #666;
	margin: 0 0 15px;
	font-size: 0.9em;
}

.pm-entity-card__accent {
	color: #0073aa;
}

.pm-entity-card__accent-strong {
	color: #0073aa;
	font-weight: 700;
}

.pm-entity-price {
	font-size: 1.5em;
	font-weight: 700;
	color: #0073aa;
}

.pm-entity-cta {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 8px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9em;
}

.pm-entity-cta--block {
	display: block;
	text-align: center;
	padding: 10px 20px;
	font-weight: 700;
}

.pm-tag-list {
	margin-bottom: 15px;
}

.pm-tag {
	display: inline-block;
	background: #f0f0f0;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 0.85em;
	margin: 0 5px 5px 0;
}

.pm-mb-15 {
	margin-bottom: 15px;
}

.pm-mb-10 {
	margin-bottom: 10px;
}

.pm-text-sm {
	font-size: 0.9em;
}

.pm-text-base {
	font-size: 1em;
}

.pm-title-sm {
	font-size: 1.2em;
}

.pm-mt-10 {
	margin-top: 10px;
}

.pm-mt-5 {
	margin-top: 5px;
}

.pm-mt-3 {
	margin-top: 3px;
}

.pm-mt-20 {
	margin-top: 20px;
}

.pm-mb-20 {
	margin-bottom: 20px;
}

.pm-text-14 {
	font-size: 14px;
}

.pm-event-details {
	background: #f5f5f5;
	padding: 20px;
	margin: 20px 0;
	border-radius: 8px;
}

.pm-event-details__title {
	margin-top: 0;
}

.pm-event-details__notice {
	background: #fff3cd;
	border: 1px solid #ffc107;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 4px;
}

.pm-event-details__section {
	margin-bottom: 15px;
}

.pm-event-details__muted {
	color: #666;
}

.pm-event-details__teacher-bio {
	color: #666;
	font-size: 0.9em;
}

.pm-event-register-button {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 700;
}

.pm-entry-thumbnail {
	margin-bottom: 20px;
}

.pm-entry-thumbnail img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.pm-section-box {
	background: #f5f5f5;
	padding: 20px;
	margin: 20px 0;
	border-radius: 8px;
}

.pm-section-box__title {
	margin-top: 0;
}

.pm-list-reset {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pm-card-list-item {
	margin-bottom: 15px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 4px;
}

.pm-link-strong {
	font-weight: 700;
}

.pm-link-lg {
	font-size: 1.1em;
}

.pm-muted {
	color: #666;
}

.pm-text-555 {
	color: #555;
}

.pm-inline-block {
	display: inline-block;
}

.pm-button-primary {
	display: inline-block;
	background: #0073aa;
	color: #fff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 4px;
}

.pm-person-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.pm-person-avatar {
	flex-shrink: 0;
	position: relative;
}

.pm-person-avatar__img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #ddd;
}

.pm-person-avatar__verified {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 35px;
}

.pm-person-title {
	margin: 0;
}

.pm-person-check {
	color: #1e88e5;
	font-size: 0.8em;
	margin-right: 10px;
}

.pm-person-display-name {
	margin: 5px 0 0 0;
	font-size: 1.1em;
	color: #666;
}

.pm-section-box--info {
	background: #f0f8ff;
	border-right: 4px solid #2196f3;
}

.pm-section-title--info {
	margin-top: 0;
	color: #1976d2;
}

.pm-tag-pill {
	display: inline-block;
	background: #2196f3;
	color: #fff;
	padding: 5px 12px;
	border-radius: 15px;
	margin: 3px;
	font-size: 0.9em;
}

.pm-mini-card {
	margin-bottom: 15px;
	padding: 12px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pm-link-info {
	color: #1976d2;
	text-decoration: none;
}

.pm-link-muted {
	color: #666;
	text-decoration: none;
}

.pm-admin-cta {
	text-align: center;
	margin-top: 40px;
	padding: 30px 20px;
	background: #f9f9f9;
	border-radius: 8px;
}

/* About Page Styles */
.pm-about-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.pm-about-header {
	text-align: center;
	margin-bottom: 40px;
}

.pm-about-title {
	font-size: 2.5em;
	margin-bottom: 20px;
}

.pm-about-content {
	line-height: 1.8;
	font-size: 1.1em;
}

.pm-about-section {
	margin-top: 60px;
}

.pm-about-section-title {
	font-size: 2em;
	margin-bottom: 30px;
	text-align: center;
}

.pm-about-mission-text {
	font-size: 1.1em;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
}

.pm-about-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.pm-about-value-card {
	text-align: center;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
}

.pm-about-value-title {
	font-size: 1.5em;
	margin-bottom: 15px;
	color: #0073aa;
}

.pm-about-features-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.pm-about-features-list {
	list-style: none;
	padding: 0;
}

.pm-about-feature-item {
	padding: 20px;
	margin-bottom: 15px;
	background: #f9f9f9;
	border-right: 4px solid #0073aa;
	border-radius: 4px;
}

.pm-about-feature-title {
	font-size: 1.2em;
	color: #0073aa;
}

.pm-about-cta {
	margin-top: 60px;
	text-align: center;
	padding: 40px;
	background: #0073aa;
	color: white;
	border-radius: 8px;
}

.pm-about-cta-title {
	font-size: 2em;
	margin-bottom: 20px;
	color: white;
}

.pm-about-cta-text {
	font-size: 1.2em;
	margin-bottom: 30px;
}

.pm-about-cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: white;
	color: #0073aa;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	font-size: 1.1em;
}

/* Card Person Styles */
.pm-card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.pm-card-avatar {
	flex-shrink: 0;
	position: relative;
}

.pm-card-avatar__img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ddd;
}

.pm-card-avatar__verified {
	position: absolute;
	bottom: -2px;
	right: -2px;
	width: 20px;
	height: 20px;
}

.pm-card-title-wrapper {
	flex: 1;
}

.pm-card-title {
	margin: 0;
}

.pm-card-check {
	color: #1e88e5;
	font-size: 0.8em;
	margin-right: 5px;
}

.pm-card-display-name {
	margin: 5px 0 0 0;
	font-size: 0.9em;
	color: #666;
}

/* Footer Links Styles */
.pm-footer-links-section {
	background: #f5f5f5;
	padding: 40px 20px;
	margin-top: 60px;
	border-radius: 8px;
}

.pm-footer-links-title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 1.5em;
}

.pm-footer-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	max-width: 1200px;
	margin: 0 auto;
}

.pm-footer-area-link {
	display: block;
	background: white;
	padding: 15px 20px;
	text-align: center;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pm-footer-area-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pm-footer-area-link--all {
	background: #0073aa;
	color: white;
	font-weight: bold;
}

.pm-footer-area-link--all:hover {
	background: #005a87;
}

.pm-footer-links-center {
	text-align: center;
}

.pm-footer-single-link {
	display: inline-block;
	background: #0073aa;
	padding: 15px 40px;
	border-radius: 6px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	font-size: 1.1em;
}

/* Page Template Styles */
.pm-page-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.pm-page-container--wide {
	max-width: 1200px;
	padding: 0 20px;
}

.pm-page-header {
	text-align: center;
	margin-bottom: 30px;
}

.pm-page-title {
	font-size: 2.5em;
	margin-bottom: 10px;
}

.pm-page-subtitle {
	font-size: 1.1em;
	color: #666;
	margin: 0;
}

/* Hero CTA Buttons */
.pm-hero-cta-buttons {
	margin-top: var(--wp--preset--spacing--50);
}

.pm-admin-cta__button {
	display: inline-block;
	padding: 15px 40px;
	background: #2ecc71;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.1em;
}

.is-hidden {
	display: none;
}

.pm-geo-city-wrapper {
	transition: opacity 0.3s ease;
}

.pm-entry-thumbnail {
	margin-bottom: 20px;
}

.pm-entry-thumbnail img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.pm-bio-short {
	font-size: 1.1em;
	color: #666;
	margin: 10px 0 20px;
}

.pm-contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.pm-contact-header {
	text-align: center;
	margin-bottom: 40px;
}

.pm-contact-title {
	font-size: 2.5em;
	margin-bottom: 20px;
}

.pm-contact-lead {
	font-size: 1.2em;
	color: #666;
}

.pm-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.pm-contact-grid {
		grid-template-columns: 1fr;
	}
}

.pm-contact-section-title {
	font-size: 1.8em;
	margin-bottom: 30px;
}

.pm-contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pm-contact-field-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

.pm-contact-field {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1em;
}

.pm-contact-textarea {
	resize: vertical;
}

.pm-contact-submit {
	padding: 15px 40px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1.1em;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s;
}

.pm-contact-submit:hover {
	background: #005a87;
}

.pm-form-message {
	display: none;
	padding: 15px;
	border-radius: 4px;
	margin-top: 10px;
}

.pm-form-message.is-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.pm-form-message.is-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.pm-contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.pm-contact-info-card {
	padding: 25px;
	background: #f9f9f9;
	border-radius: 8px;
}

.pm-contact-info-card-title {
	font-size: 1.3em;
	margin-bottom: 10px;
	color: #0073aa;
}

.pm-contact-info-card-text {
	font-size: 1.1em;
	margin: 0;
}

.pm-contact-link {
	color: #333;
	text-decoration: none;
}

.pm-contact-social {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.pm-contact-social-link {
	display: inline-block;
	padding: 10px 20px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

.pm-contact-cta {
	margin-top: 60px;
	padding: 40px;
	background: #f9f9f9;
	border-radius: 8px;
	text-align: center;
}

.pm-contact-cta-title {
	font-size: 1.8em;
	margin-bottom: 20px;
}

.pm-contact-cta-text {
	font-size: 1.1em;
	margin-bottom: 20px;
}

.pm-contact-cta-link {
	display: inline-block;
	padding: 15px 40px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 1.1em;
}

.pm-pillar-content {
	margin-top: 60px;
	padding: 60px 0;
	background: #f9f9f9;
}

.pm-pillar-content__inner {
	max-width: 800px;
	margin: 0 auto;
}

.pm-pillar-content__title {
	font-size: 2em;
	margin-bottom: 30px;
	color: #333;
	text-align: center;
}

.pm-pillar-content__body {
	font-size: 1.1em;
	line-height: 1.8;
	color: #444;
}

.pm-pillar-content__body h2 {
	font-size: 1.6em;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #333;
}

.pm-pillar-content__body h3 {
	font-size: 1.3em;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #333;
}

.pm-pillar-content__body p {
	margin-bottom: 20px;
}

.pm-pillar-content__body ul,
.pm-pillar-content__body ol {
	margin-bottom: 20px;
	padding-right: 30px;
}

.pm-pillar-content__body li {
	margin-bottom: 10px;
}

.pm-pillar-content__body a {
	color: #0073aa;
	text-decoration: underline;
}

.pm-pillar-content__body a:hover {
	color: #005177;
}
