37 lines
616 B
SCSS
Vendored
37 lines
616 B
SCSS
Vendored
@use "../abstracts/mixin" as *;
|
|
@use "../abstracts/variables" as *;
|
|
|
|
.featured {
|
|
img {
|
|
width: 100%;
|
|
object-fit: cover;
|
|
max-height: 218px;
|
|
}
|
|
h2 {
|
|
margin: 0;
|
|
a {
|
|
font-family: Montserrat, serif;
|
|
font-size: 20px;
|
|
font-weight: 600;
|
|
line-height: 1.35;
|
|
text-align: left;
|
|
color: $text-color;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.sub_title {
|
|
@include sub_title;
|
|
}
|
|
|
|
p {
|
|
font-family: Nunito, serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 1.57;
|
|
text-align: left;
|
|
color: $text-secondary-color;
|
|
margin: 10px 0;
|
|
}
|
|
}
|