| @@ -231,6 +231,7 @@ | |||||
| @media(max-width: 1199px) { | @media(max-width: 1199px) { | ||||
| width: calc(33.33333% - 20px); | width: calc(33.33333% - 20px); | ||||
| padding-right: 0; | |||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| @@ -60,7 +60,7 @@ | |||||
| @mixin kicker { | @mixin kicker { | ||||
| display: block; | display: block; | ||||
| font-size: 16px; | font-size: 16px; | ||||
| text-transform: uppercase; | |||||
| //text-transform: uppercase; | |||||
| margin-bottom: 2px; | margin-bottom: 2px; | ||||
| letter-spacing: 0.3px; | letter-spacing: 0.3px; | ||||
| @@ -12,6 +12,7 @@ | |||||
| color: var(--color); | color: var(--color); | ||||
| transition: color 0.3s ease; | transition: color 0.3s ease; | ||||
| z-index: 2; | z-index: 2; | ||||
| width: 100%; | |||||
| span { | span { | ||||
| padding-left: 4px; | padding-left: 4px; | ||||
| @@ -147,6 +147,7 @@ | |||||
| font-size:16px; | font-size:16px; | ||||
| text-transform: uppercase; | text-transform: uppercase; | ||||
| line-height: 18px; | line-height: 18px; | ||||
| font-family: 'Source Sans Pro', sans-serif; | |||||
| } | } | ||||
| .title{ | .title{ | ||||
| text-align: left; | text-align: left; | ||||
| @@ -19,7 +19,7 @@ | |||||
| line-height: 1; | line-height: 1; | ||||
| z-index: 1; | z-index: 1; | ||||
| font-weight: 400; | font-weight: 400; | ||||
| font-family: "Source Code Pro", sans-serif; | |||||
| font-family: "Source Sans Pro", sans-serif; | |||||
| margin-top: 30px; | margin-top: 30px; | ||||
| @media(max-width: 567px) { | @media(max-width: 567px) { | ||||
| @@ -259,9 +259,9 @@ | |||||
| min-width: calc(50% - var(--col-padding)); | min-width: calc(50% - var(--col-padding)); | ||||
| } | } | ||||
| .image-box { | |||||
| margin-top: -29px; | |||||
| } | |||||
| //.image-box { | |||||
| // margin-top: -29px; | |||||
| //} | |||||
| } | } | ||||
| } | } | ||||
| @@ -296,18 +296,42 @@ | |||||
| @media(min-width: 1000px) { | @media(min-width: 1000px) { | ||||
| &[data-items="1"] { | &[data-items="1"] { | ||||
| .teaser { | |||||
| display: grid !important; | |||||
| grid-template-columns: 1fr 1fr !important; | |||||
| align-items: start; | |||||
| gap: 0 40px; | |||||
| } | |||||
| .kicker { | |||||
| grid-column: 2; | |||||
| grid-row: 1; | |||||
| } | |||||
| .title { | |||||
| margin-top: 0 !important; | |||||
| } | |||||
| .image-box { | .image-box { | ||||
| max-width: calc(50% - 20px); | |||||
| min-width: calc(50% - 20px); | |||||
| grid-column: 1; | |||||
| grid-row: 1 / span 999; | |||||
| width: 100% !important; | |||||
| max-width: none; | |||||
| margin-top: 0 !important; | |||||
| //max-width: calc(50% - 20px); | |||||
| //min-width: calc(50% - 20px); | |||||
| ~ .kicker { | ~ .kicker { | ||||
| max-width: calc(50% - 20px); | |||||
| margin-left: 20px; | |||||
| //max-width: calc(50% - 20px); | |||||
| //margin-left: 20px; | |||||
| } | } | ||||
| ~ .text-box { | ~ .text-box { | ||||
| max-width: calc(50% - 20px); | |||||
| min-width: calc(50% - 20px); | |||||
| grid-column: 2; | |||||
| grid-row: 2; | |||||
| //max-width: calc(50% - 20px); | |||||
| //min-width: calc(50% - 20px); | |||||
| } | |||||
| ~ .reading-time { | |||||
| grid-column: 2; | |||||
| grid-row: 3; | |||||
| } | } | ||||
| } | } | ||||
| } | } | ||||