.cdl-contact-full-cwe {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
align-items: center;
gap: clamp(2rem, 6vw, 6rem);
width: 100%;
padding: clamp(1.5rem, 4vw, 4rem) 0;
color: #444;
background: transparent;
}
.cdl-contact-full-cwe--dark {
color: #444;
}
.cdl-contact-full-cwe--light {
color: #fff;
}
.cdl-contact-full-cwe__content {
min-width: 0;
}
.cdl-contact-full-cwe--without-image {
grid-template-columns: minmax(0, 1fr);
}
.cdl-contact-full-cwe__heading {
margin: 0 0 1rem;
color: inherit;
font-size: clamp(2rem, 4vw, 3.25rem);
font-weight: 700;
line-height: 1.05;
}
.cdl-contact-full-cwe__name {
margin: 0;
color: inherit;
font-size: clamp(1.45rem, 2.6vw, 2rem);
font-weight: 700;
line-height: 1.2;
}
.cdl-contact-full-cwe__jobtitle {
margin: .3rem 0 0;
font-size: clamp(1rem, 1.8vw, 1.2rem);
font-weight: 600;
}
.cdl-contact-full-cwe__details {
margin-top: clamp(2rem, 5vw, 5rem);
}
.cdl-contact-full-cwe__details p {
margin: 0 0 .4rem !important;
padding: 0;
font-size: clamp(1rem, 1.8vw, 1.3rem);
line-height: 1.35;
}
.cdl-contact-full-cwe__details a {
color: inherit;
text-decoration: none;
}
.cdl-contact-full-cwe__email a {
color: #a51b0b;
}
.cdl-contact-full-cwe--light .cdl-contact-full-cwe__email a {
color: inherit;
}
.cdl-contact-full-cwe__details a:hover,
.cdl-contact-full-cwe__details a:focus-visible {
text-decoration: underline;
}
.cdl-contact-full-cwe__email {
overflow-wrap: anywhere;
}
.cdl-contact-full-cwe__custom-fields {
margin: .75rem 0 0;
padding: 0;
font-size: clamp(1rem, 1.8vw, 1.3rem);
line-height: 1.35;
}
.cdl-contact-full-cwe__custom-field {
display: block;
margin: 0 0 .55rem;
}
.cdl-contact-full-cwe__custom-field dt {
font-weight: 600;
margin: 0 0 .1rem;
line-height: 1.35;
}
.cdl-contact-full-cwe__custom-field dd {
min-width: 0;
margin: 0;
overflow-wrap: anywhere;
}
.cdl-contact-full-cwe__custom-line {
display: block;
margin: 0;
padding: 0;
line-height: 1.35;
}
.cdl-contact-full-cwe__image {
display: flex;
justify-content: center;
width: 100%;
max-width: 520px;
margin-left: auto;
background: transparent;
}
.cdl-contact-full-cwe__image img {
display: block;
width: 100%;
max-width: none;
height: auto;
background: transparent;
}
@media (max-width: 760px) {
.cdl-contact-full-cwe {
grid-template-columns: 1fr;
gap: 2rem;
padding: 1.5rem 0;
}
.cdl-contact-full-cwe__image {
grid-row: 1;
width: min(86vw, 360px);
margin: 0 auto;
}
.cdl-contact-full-cwe__content {
grid-row: 2;
}
.cdl-contact-full-cwe__details {
margin-top: 1.75rem;
}
}