.sap_grid-container {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
justify-items: center;
max-width:1600px;
margin: 0 auto;
margin-top:42px;
}
.sap_background-image {
grid-column: 1 / -1;
grid-row: 1 / -1;
}
.sap_background-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
margin: 0;
}
.sap_parks-information {
grid-column: 1 / -1;
grid-row: 1 / -1;
display: grid;
grid-template-columns: 1fr;
position: relative;
}
.sap_left-column, .sap_right-column {
grid-column: 1 / -1;
z-index: 1;
}
.sap_left-column {
overflow: visible;
max-height: 400px;
}
.sap_left-column img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
margin:0;
border: 2px solid rgb(206, 206, 206);
}
.sap_right-column {
color: #7f7a31;
display: flex;
flex-direction: column;
justify-content: center;
padding: 16px 16px 24px;
max-width: 800px;
}
.parkTitle {
font-family: "fortescue-regular", Georgia, 'Times New Roman', Times, serif;
font-size: 42px;
font-weight: normal;
}
.parkSubtitle {
font-family: reader-regular, sans-serif;
color: #676767;
font-size: 1rem;
line-height: 1.5;
margin: 0 0 32px 0;
}
h2 {
font-size: 1rem;
font-weight: normal;
margin-bottom: 1.5rem;
color: #000;
}
.sap_circle-badge {
font-family: Helvetica,Arial, sans-serif;
width: 24px;
height: 24px;
border-radius: 50%;
background-color: #8c8441;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 14px;
position: relative;
}
.sap_circle-badge::before {
content: '';
position: absolute;
top: -4px;
left: -4px;
right: -4px;
bottom: -4px;
border-radius: 50%;
border: 2px solid #8c8441;
background-color: white;
z-index: -1;
}
.sap_highlights {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
align-items: start;
}
.sap_highlight-block {
display: grid;
grid-template-columns: 32px 1fr;
gap: 8px;
max-width: 340px;
align-items: center;
}
.sap_heading {
font-weight: 500;
color: #8c8441;
font-size: 18px;
margin: 0;
}
.sap_description {
grid-column: 1 / -1;
font-family: 'reader-regular', Helvetica,Arial, sans-serif;
color: #676767;
font-size: 1rem;
line-height: 1.5;
margin: 0;
}
@media (min-width: 990px) {
.sap_parks-information {
grid-template-columns: 2fr 3fr;
gap: 42px;
}
.sap_left-column, .sap_right-column {
position: relative;
grid-row: 1 / 2;
width: 100%;
}
.sap_background-image {
grid-column: 1 / 3;
grid-row: 1 / 2;
}
.sap_left-column {
grid-column: 1 / 2;
max-width: 100%;
height: 100%;
max-height: 900px;
border: 1px solid rgb(206, 206, 206);
margin: 16px;
}
.sap_left-column img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sap_right-column {
grid-column: 2 / 3;
padding: 24px 42px 24px 8px;
}
}