2026-02-18 16:40:20 +01:00
|
|
|
.card--package,
|
2026-02-07 15:59:34 +01:00
|
|
|
.card--article-small {
|
2026-01-06 17:14:32 +01:00
|
|
|
|
|
|
|
|
@include grid-content();
|
2026-02-07 15:59:34 +01:00
|
|
|
|
2026-02-18 16:40:20 +01:00
|
|
|
margin-bottom: calc(var(--spacing)*0.75);
|
|
|
|
|
border: var(--border-light);
|
2026-02-07 15:59:34 +01:00
|
|
|
|
|
|
|
|
&:first-of-type {
|
2026-01-22 16:42:01 +01:00
|
|
|
border-top: var(--border-light);
|
|
|
|
|
}
|
2026-02-07 15:59:34 +01:00
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
|
2026-01-29 20:57:17 +01:00
|
|
|
|
2026-01-25 22:25:08 +01:00
|
|
|
@include figure-16-9();
|
2026-01-29 20:57:17 +01:00
|
|
|
|
|
|
|
|
|
2026-02-18 16:40:20 +01:00
|
|
|
.type {
|
|
|
|
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
height: calc(var(--h-block)*0.75);
|
|
|
|
|
border-radius: var(--radius-small);
|
|
|
|
|
border: var(--border-medium);
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 5px 1ch 0 1ch;
|
|
|
|
|
|
|
|
|
|
font-size: var(--fs-xsmall);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: var(--color-txt-light);
|
|
|
|
|
margin-bottom: calc(var(--spacing)*0.75);
|
|
|
|
|
|
|
|
|
|
}
|
2026-02-03 08:24:43 +01:00
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
.content {
|
2026-01-06 15:43:31 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-02-18 16:40:20 +01:00
|
|
|
align-items: flex-start;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
padding-top: calc(var(--padding-inner)*2);
|
|
|
|
|
padding-bottom: calc(var(--padding-inner)*2);
|
|
|
|
|
padding-left: calc(var(--padding-inner)*1.5);
|
2026-01-25 22:25:08 +01:00
|
|
|
padding-right: calc(var(--padding-inner)*3);
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
.title {
|
2026-02-06 15:10:27 +01:00
|
|
|
font-weight: 500;
|
2026-02-18 16:40:20 +01:00
|
|
|
font-size: var(--fs-normal);
|
2026-02-07 15:59:34 +01:00
|
|
|
margin-bottom: 0.25em;
|
2026-02-03 08:24:43 +01:00
|
|
|
text-wrap: balance;
|
2026-01-22 16:42:01 +01:00
|
|
|
max-width: 42ch;
|
2026-01-27 22:24:47 +01:00
|
|
|
text-transform: uppercase;
|
2026-02-07 15:59:34 +01:00
|
|
|
line-height: var(--leading-title);
|
2026-02-18 16:40:20 +01:00
|
|
|
flex-grow: 2;
|
2026-02-07 15:59:34 +01:00
|
|
|
a {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-18 16:40:20 +01:00
|
|
|
.date,
|
|
|
|
|
.details {
|
|
|
|
|
// flex-grow: 2;
|
2026-01-06 15:43:31 +01:00
|
|
|
color: var(--color-txt-light);
|
2026-02-18 16:40:20 +01:00
|
|
|
font-size: var(--fs-small);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details {
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
display: inline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li:not(:last-of-type)::after {
|
|
|
|
|
content: "|";
|
|
|
|
|
padding-left: 1ch;
|
|
|
|
|
padding-right: 0.5ch;
|
|
|
|
|
}
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
2026-01-29 20:57:17 +01:00
|
|
|
|
2026-02-18 16:40:20 +01:00
|
|
|
|
|
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
.description {
|
2026-02-18 16:40:20 +01:00
|
|
|
font-size: var(--fs-small);
|
2026-02-07 15:59:34 +01:00
|
|
|
@include clamp(2);
|
2026-02-25 18:22:13 +01:00
|
|
|
// margin-top: calc(var(--spacing)*-0.5);
|
|
|
|
|
// display: none;
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
|
2026-01-06 15:43:31 +01:00
|
|
|
|
2026-01-25 22:25:08 +01:00
|
|
|
@include btn--go-to();
|
2026-01-28 01:15:51 +01:00
|
|
|
@include hover-card-line();
|
2026-01-25 22:25:08 +01:00
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
|
|
|
|
|
@media #{$medium} {
|
|
|
|
|
.title {
|
2026-01-06 15:43:31 +01:00
|
|
|
font-size: var(--fs-normal);
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
@media #{$small} {
|
|
|
|
|
row-gap: 0;
|
|
|
|
|
display: block;
|
2026-01-29 20:57:17 +01:00
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
.content{
|
|
|
|
|
padding: calc(var(--spacing)*0.5) var(--padding-inner);
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
2026-02-07 15:59:34 +01:00
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
.type{
|
|
|
|
|
margin-bottom: calc(var(--spacing)*0.75);
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
2026-01-29 20:57:17 +01:00
|
|
|
|
2026-02-25 14:14:37 +01:00
|
|
|
.title{
|
|
|
|
|
margin-bottom: calc(var(--spacing)*0.25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.details,
|
|
|
|
|
.date{
|
|
|
|
|
margin-top: calc(var(--spacing)*0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn--go-to{
|
|
|
|
|
bottom: calc(var(--padding-inner) * 0.75);
|
|
|
|
|
|
|
|
|
|
right: calc(var(--padding-inner)*0.75);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// .content {
|
|
|
|
|
// align-self: auto;
|
|
|
|
|
// height: 100%;
|
|
|
|
|
|
|
|
|
|
// padding: 0;
|
|
|
|
|
// padding-bottom: calc(var(--padding-inner)*0.5);
|
|
|
|
|
// display: flex;
|
|
|
|
|
// flex-direction: column;
|
|
|
|
|
|
|
|
|
|
// align-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .type{
|
|
|
|
|
// display: none;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .title {
|
|
|
|
|
// font-size: var(--fs-xsmall);
|
|
|
|
|
// padding-top: calc(var(--spacing)*0.5);
|
|
|
|
|
// padding-right: 2ch;
|
|
|
|
|
// text-wrap: wrap;
|
|
|
|
|
// flex-grow: 1;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// .date{
|
|
|
|
|
// font-size: var(--fs-xsmall);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// figure {
|
|
|
|
|
// grid-row: 1
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
|
2026-01-06 15:43:31 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-07 15:59:34 +01:00
|
|
|
|
|
|
|
|
|
2026-01-06 15:43:31 +01:00
|
|
|
|
|
|
|
|
}
|