carhop__carhop-theme__DEV/resources/css/blocks/team-authors.css
2025-07-01 16:53:45 +02:00

64 lines
1.2 KiB
CSS

.team-authors {
@apply max-w-screen-xl px-12 mx-auto py-24;
.author-card {
@apply bg-white p-8 border border-carhop-green-700 mb-0 flex flex-col;
&--director {
@apply bg-primary;
.author-card__name,
.author-card__bio {
@apply text-white;
}
.author-card__email {
@apply bg-white text-primary;
&:hover {
@apply bg-carhop-green-900;
}
}
}
&__profile-picture {
@apply w-full h-32 object-cover mb-6 border border-carhop-green-700 relative;
/* img {
@apply object-cover object-center;
object-fit: cover;
object-position: center;
width: calc(100% - 16px);
height: calc(100% - 16px);
} */
}
&__name {
@apply text-2xl font-medium mb-4 uppercase;
}
&__email {
@apply mt-4;
&:hover {
@apply cta--primary;
}
}
&__bio {
}
}
.comity-type {
@apply pt-12;
&__title {
@apply text-4xl font-medium mb-4 uppercase pb-10;
}
&__list {
@apply grid grid-cols-2 md:grid-cols-3 gap-12;
}
&__item {
}
}
}