/*
.sponsorship-parrot-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.sponsorship-parrot-tile {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	max-width: 300px;
	max-height: 200px;
	cursor: pointer;
}

.sponsorship-parrot-tile img {
	border-radius: 10000px;		/* make it pill shape * /
	object-fit: cover;
	filter: brightness(100%);
	transform: scale(1.0);
	transition: filter linear 0.25s, transform linear 0.25s;
	height: 100%;
	aspect-ratio: 3/2; /* ensures it fits the "pill" * /
}


.parrot-tile-image-overlay {
	position: absolute;
	width: max-content;
	font-size: 1.25rem;
	font-weight: 700;
	text-shadow: 2px 2px #000;
	text-align: center;
	color: #FFF;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity linear 0.25s;
}
.sponsorship-parrot-tile:hover .parrot-tile-image-overlay {
	transition: opacity linear 0.25s;
	opacity: 1;
}
.sponsorship-parrot-tile:hover img {
	border: 2px solid #AAA;
	filter: brightness(75%);
	transform: scale(1.05);
	transition: filter linear 0.25s, transform linear 0.25s;
}
*/
/* Alternative to above, from Claude AI? */
  /* Spezies-Buttons */
.arge-pat.species-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0 50px;}
  /*
  .arge-pat .species-card { border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; text-align: center; transition: all .2s; cursor: pointer; background: #fff; display: block; }
  .arge-pat .species-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,.08); transform: translateY(-2px); border-color: #e30613; }
  .arge-pat .species-card>img { width: 80px; height: 80px; margin: 0 auto 15px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; }
  .arge-pat .species-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
  .arge-pat .species-card p { font-size: 13px; color: #777; margin: 0; }
  .arge-pat .species-card .count { display: inline-block; background: #e30613; color: white; font-size: 12px; padding: 3px 10px; border-radius: 12px; margin-top: 10px; }
*/
/* Mix of Claude AI and Pill shape */
.arge-pat .species-card-pill {border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; text-align: center; transition: all .2s; cursor: pointer; background: #fff; display: block;}
.arge-pat .species-card-pill:hover {box-shadow: 0 4px 15px rgba(0,0,0,.08); transform: translateY(-2px); border-color: var(--wp--preset--color--primary-dark);}
.arge-pat .species-card-pill>img {max-width: 200px; border-radius: 10000px; aspect-ratio: 3/2; object-fit: cover; margin: 0 auto 15px; background-color: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 36px;}





/* parrot species listing */
.parrot-list-header-name {
	margin-top: 30px;
}
.parrot-list-header-info-container {
	font-size: 1.5em;
	margin: 18px 0;
}
.parrot-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 36px;
}
.parrot-card {
	display: flex;
	flex-flow: column;
	text-align: center;
	width: 100%;
	max-width: 350px;
	border: 1px solid var(--wp--preset--colour-button-border);
	cursor: pointer;
}
.parrot-card-info {
  display: block;
  text-decoration: none;
}
/* used in Unsere Papageien 
 * it is the query-loop - CSS class applied on that element
 */
.our-parrots-listing {
	display: flex !important;
	flex-wrap: wrap;
}
.our-parrots-listing>li {
	width: 100%;
}
.our-parrots-listing>li>div {
	height: 100%;
}
@media screen and (min-width: 540px) {
	.parrot-list-container {
		justify-content: flex-start;
	}
	.parrot-card {
		width: calc(50% - 38px);
	}
	.our-parrots-listing>li {
		width: calc(50% - 32px);
	}
}
@media screen and (min-width: 768px) {
	.parrot-card {
		width: calc(33.33% - 25px);
	}
	.our-parrots-listing>li {
		width: calc(33.33% - 32px);
	}
}


.parrot-card-title {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}
.parrot-card img {
	width: 100%;
	filter: brightness(100%);
	transform: scale(1.0);
	transition: filter linear 0.25s, transform linear 0.25s;
}
/* .parrot-card:hover {
	transition: opacity linear 0.25s;
	opacity: 1;
} */
.parrot-card:hover img {
	filter: brightness(75%);
	transform: scale(1.05);
	transition: filter linear 0.25s, transform linear 0.25s;
}


/* parrot detail page */
.parrot-info-card {
	box-shadow: 4px 4px 14px 2px #AAA;
}