.posizioni-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.posizioni .posizione {
padding: 20px 15px 60px;
box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
border-radius: 5px;
transition: 0.3s ease;
height: 100%;
cursor: pointer;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-content: center;
justify-content: flex-start;
align-items: center;
position: relative;
}
.posizioni .posizione:hover {
transform: translateY(-5px);
}
.posizione--title {
text-align: center;
display: block;
font-family: "Caveat", Sans-serif;
font-size: 30px;
line-height: 1;
color: #0a6505;
}
.posizione--excerpt {
text-align: center;
display: block;
font-weight: 400;
font-family: "Karla", Sans-serif;
font-size: 18px;
line-height: 1;
}
.posizione--content {
display: none;
}
.posizione-highlight .posizione-highlight--title {
text-align: center;
margin-bottom: 20px;
}
.posizione-highlight:not(:empty) {
margin-top: 50px;
}
.posizioni ul {
padding-left: 35px;
}
@media (max-width: 1024px) {
.posizioni-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 500px) {
.posizioni-list {
grid-template-columns: 1fr;
}
}
.posizione-highlight--link {
width: fit-content;
padding: 10px 30px;
border-radius: 50px;
margin: 20px auto 0;
background: #0a6505;
border: 1px solid #0a6505;
color: white;
font-family: "Roboto Slab";
font-size: 24px;
font-weight: 700;
line-height: 26px;
cursor: pointer;
transition: background 0.3s, color 0.3s;
}
.posizione-highlight--link:hover {
color: #0a6505;
background: transparent;
}
.posizione svg {
margin: 20px auto;
}
.posizione svg path {
stroke: #fc7b1f !important;
}
.posizione--scopri {
text-align: center;
display: block;
font-family: "Caveat", Sans-serif;
font-size: 23px;
line-height: 1;
position: absolute;
bottom: 20px;
color: #fc7b1f;
}