<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --card-clr-font: hsl(211, 19%, 22%);
  --card-clr-border: hsl(0, 0%, 90%);
}
.cosd-card {
  height: 100%;
  word-wrap: break-word;
}
.column_flex:has(.cosdcard) &gt; .row {
  display: flex;
  margin: 0 -1rem;
}
.column_flex &gt; .row &gt; div:has(.cosdcard) {
  padding: 0;
}
.column_flex.section div.parsys:has(.cosdcard) {
  height: 100%;
}
.cosdcard.image.section {
  border: 2px solid var(--card-clr-border);
  border-radius: 0.5rem;
}
.column_flex .cosdcard.image.section {
  height: calc(100% - 20px);
  margin: 0 1rem 20px 1rem;
}
.cosd-card h2 {
  font-size: 2rem;
}
.cosd-card p {
  font-weight: normal;
}
.cosd-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--card-clr-font) !important;
}
.cosd-card a:hover img {
  opacity: 0.85;
}
.cosd-card .cosd-card__image img {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.cosd-card .cosd-card__image  img.portrait {
  width: 100%;
  height: auto;
  visibility: visible;
}
.cosd-card .cosd-card__image  img.landscape,
.cosd-card .cosd-card__image  img.square {
  width: 100%;
  visibility: visible;
}
.cosd-card .cmp-image:has(img) {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding-top: 56.25%;
}
.cosd-card div:has(p) {
  padding: 1rem;
}

@media (max-width: 640px) {
  .column_flex:has(.cosdcard) &gt; .row {
    flex-direction: column;
  }
  .cosd-card h2 {
    font-size: 3.5rem;
  }
  .cosdcard.image.section {
    margin-bottom: 60px !important;
  }
}

/* For use on SDC home */
#components-home .cosdcard.section {
    min-height: 275px;
    background-color: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 5px #b9c2bd;
}
#components-home .cosdcard.section h2 {
    margin-top: 10px !important;
}

@media (max-width: 640px) {
    #components-home .cosdcard.section {
        max-height: revert;
        width: auto !important;
        margin: 0 20px 20px 20px !important;
        margin-bottom: 22px;
        box-shadow: 4px 4px 8px 0 #b9c2bd !important;
    }
    #components-home .cosdcard.section p {
        font-size: 30px;
    }
}   

/* Author edit mode only */
.aem-AuthorLayer-Edit .cosdcard.image.section:has(+ .new.section) {
  height: calc((100% - 20px) - 4.125rem);
}
.aem-AuthorLayer-Edit .column_flex .cosdcard.image.section {
  height: revert;
}</pre></body></html>