@charset 'UTF-8';


#section-posts .content {
    padding: 0;
}

#section-posts article {
    margin: 0;
}

#section-posts article img {
    display: block;
    border-radius: inherit;
}
#section-posts article div { position: relative; border-radius: 8px; }
#section-posts article div.media::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

#section-posts article h3 {
    padding-top: 12px;
    font-size: 22px;
}


#section-posts .content ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: stretch;
    row-gap: 20px;
    column-gap: 0;

}
#section-posts .content ul li {
    display: flex;
    width: 100%;
}

#section-posts .content ul li a:hover h3 {
    color: var(--color-accent-primary);
}

@media only screen and (min-width: 520px) {
    #section-posts .content ul { column-gap: 4%; }
    #section-posts .content ul li {
        display: flex;
        width: 46%;
    }    
}

@media only screen and (min-width: 768px) {
    #section-posts .content ul { column-gap: 3%; }
    #section-posts .content ul li {
        display: flex;
        width: 31%;
    }    
}



/* ACCORDION (JS) */
.js [data-accordion=""] {
    position: relative; /*!*/
    display: block;
    margin: 0;
    padding:0;
    border-top: 1px dashed var(--color-accent);
}

.js [data-accordion-last],
.js [data-accordion=""]:last-child {
    margin-bottom: 24px;
    border-bottom: 1px dashed var(--color-accent);
}

.js [data-accordion="header"] {
    position: relative;
    display: block;
    margin: 0 0 0 0;
    padding: 12px 16px 12px 40px; 
    
    font-family: 'exo', sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.5;
    color: var(--color-accent);

    transition: all ease 0.2s;
    cursor: pointer;
    user-select: none;
}

.js [data-accordion="header"]::before {
    content: '\e91e';
    position: absolute;
    top: 18px;
    left: 0px;
    /* top: 50%; transform: perspective(1px) translateY(-50%); */
    display: block;
    width: 40px;
    font-family:'icon';
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--color-accent);
}

.js [data-accordion="header"]:hover,
.js [data-accordion="header"]:hover::before {
    color: var(--color-accent-primary);
}


.js [data-accordion="content"] {
    display: none;
    padding-top: 24px;
    padding-bottom: 24px;
}

/* ACTIVE */
.js [data-accordion=""].active {
    border-top: transparent;    
}
.js [data-accordion=""].active > [data-accordion="header"] {
    color: white;
    border-radius: 5px;
    background-color: var(--color-accent-primary);    
}
.js [data-accordion=""].active > [data-accordion="header"]::before {
    content: '\e91d';
    color: white;
}





/* SECTION CONTACTS */
#section-contacts {
    position: relative;
}
#section-contacts > header {
    
}

/*#section-locations > .content,
#section-contacts > .content {
    padding: 12px 0 ;
    border-top: 1px solid var(--border-color, #E0E0E0);
    border-bottom: 1px solid var(--border-color, #E0E0E0);
}
#section-contacts > .content > :last-child {
    margin-bottom: 0;
}*/

/* CONTACT CARDS */
.contact-cards > .content {
    padding: 12px 0 ;
    border-top: 1px solid var(--border-color, #E0E0E0);
    border-bottom: 1px solid var(--border-color, #E0E0E0);
}

.contact-cards > .content > :last-child {
    margin-bottom: 0;    
}

/* CONTACT CARD */
.contact-card {
    position: relative;

	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;

    margin-bottom: 24px;
    padding: 24px 0;
}
.contact-card + .contact-card:before {
    content: '';
    position: absolute; top:-12px;
    display: block;
    width: 100%;
    height: 0;
    border-top: 1px solid var(--border-color, #E0E0E0);
}

.contact-media {
    flex-shrink: 0;
    width: 50%;
}

.contact-info {
    flex-grow: 1;
    padding-left: 24px;
}

.contact-info h2 { /* H2 ADMIN */
    margin-bottom: 8px;
    padding: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: var(--color-accent);
}
.contact-info p:last-child {
    margin: 0;
}

.contact-company > .contact-media img,
.contact-location > .contact-media img {
    border-radius: var(--border-radius, 0);
}


.contact-company > .contact-media {
    width: 50%;
}
.contact-company > .contact-media img {
    border: 1px solid #ccc;
    background-color: white;
}
.contact-company > .contact-info p {
    margin: 0;
}





.contact-person > .contact-media {
    width: 30%;
}

.contact-person > .contact-media img {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 50%;
    border: 1px solid var(--border-color, #E0E0E0);   
}

@media only screen and (max-width: 640px) {
    .contact-card {
        flex-direction: column;
    }
    
    .contact-card > .contact-media {
        width: 100%;
    }
    
    .contact-card > .contact-info {
        width: 100%;
        padding: 24px 0 0 0;
    }
    
    .contact-person > .contact-media img {
        width: 200px;
    }

}


/* ---- */


/* ARTICLE */
article { position:relative; display:block; margin:0 0 24px 0; }
article header {}
article header a.media { overflow:hidden; position:relative; display:block; }
article header a.media > img {
    position: relative; z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    -webkit-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    -webkit-transform:scale3d(1.01,1.01,1);
    transform: scale3d(1.01,1.01,1);
}
article header:hover a > img { -webkit-transform:scale3d(1.05,1.05,1); transform:scale3d(1.05,1.05,1); }
article > .content {}
article footer {}
article footer ul.meta { margin:0; padding:0; border:0; list-style:none; }
article footer ul.meta .label,
article footer ul.meta .author,
article footer ul.meta .comment {
    clip: rect(0, 0, 0, 0);
    overflow:hidden;
    position:absolute;
    width:1px;
    height:1px;
    margin:-1px;
    padding:0;
    border:0;
}

/* TEASER POST */
article.teaser.post {
	position:relative;
	display:block;
	margin:6px 0 0 0;
	padding:0;
	border: 0px solid #e5e5e5;
	border-radius: var(--border-radius, 0);
    transition: all .2s ease-out;
}
article.teaser.post:hover header h2 a {
    color: var(--color-accent-primary);
}

article.teaser.post header { border:0; }
article.teaser.post header a.media {
    margin-bottom: 0;
    border: none;
    __border: 1px solid #F2F2F2;
    border-radius: var(--border-radius, 0);
}

article.teaser.post header a.media::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

article.teaser.post header h2  { display:block; padding-bottom:8px; font-weight:400; font-size:1.4em; line-height:1.2; }
article.teaser.post header h2 small {
    display: block;
    margin: 0 0 8px 0;
    padding: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-text);
}

article.teaser.post header h2 a { color: var(--color-accent); }
article.teaser.post header h2 a:hover { color: var(--color-accent-primary); }

article.teaser.post .content {}

article.teaser.post footer { display: none; }
article.teaser.post[data-category="aktuelles"] footer {
    display: block;
    padding-top: 0;
    font-size:16px;
}

article.teaser.post ul.meta { border: 0; }
__article.teaser.post ul.meta .publication {
    display: block;
	position: absolute; top: 0; right: auto; bottom: auto; left: 50%; z-index:1; 
	font-size:13px;
	font-weight:400;
	line-height:1; 
	color: white;
    margin-left: -44px; 
	padding:10px 10px;
	border:none;
	border-top-right-radius: var(--border-radius, 0);
	border-top-left-radius: var(--border-radius, 0);
	pointer-events:none;
    background-color: rgb(89,93,97);
}
__article.teaser.post ul.meta .publication::before {
    display: none;
	content:'';
	position:absolute; top:0; left:-12px;
	width:0;
	height:0;
	border-left:6px solid transparent; border-top:6px solid transparent; border-right:6px solid #97AF04;
}

article.teaser.post ul.meta .publication {
	position: absolute; top: 16px; left: -2px; z-index: 10;
    display: inline-block;
    margin: 0;
    padding: 6px 8px;
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #50565C;

    border-top-left-radius: 1px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 2px;
    background-color: var(--color-accent-primary);
    background-color: rgb(from #50565C r g b / 1);
    background-color: rgb(255,255,255,1);
/*    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);*/
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    
    
    
	pointer-events:none;
}


article.teaser.post ul.meta .category-primary {
    display: none;
    position: absolute; top: 24px; left: 0px; z-index: 10;
    
    padding:0;
}
article.teaser.post ul.meta .category-primary a {
    display: block;
    padding: 6px 16px;
    /*font-family: "Oswald";*/
    font-weight: 400;
    font-size: 19px;    
    line-height: 32px;
    text-transform:uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text);
    border-top-right-radius: var(--border-radius, 0);
    border-bottom-right-radius: var(--border-radius, 0);        
    background-color: var(--color-background);;
    transition: all ease 0.2s;
}
article.teaser.post ul.meta .category-primary a:hover {
    color: #006272;
    /*background-color: #006272;*/   
}

article.teaser.post ul.meta .category { display: none; padding-left:16px; }
article.teaser.post ul.meta .category a { font-weight:400; font-size:15px; text-align:left; color: hsla(105,57%,35%,1.00); color: #aaa; }
article.teaser.post ul.meta .category a:hover { color: #fff; background-color: #c41343; }






main > section { position:relative; padding:24px 0; background-color:transparent; }
main > section:before, #main > section:after { content:''; position:absolute; display:block; }
main > section > * { max-width:1360px; margin:0 auto; }
.home main section > header { padding:0 16px; border:0px solid #FF00FF; }
main section .sh-title small {
    display: block;
    padding-top: 12px;
    font-size: 0.70em;
    line-height: 1.2;
    color: var(--color-text);
}
main section .sh-title > .icon { display:none; }
main section a.sh-action {
	position:relative;
	display:inline-block;
	margin:16px 0;
	padding:12px 20px;
	text-transform:uppercase;
	font-weight:600;
	font-size:20px;
	letter-spacing: 3px;
	color:#808080; color:#FFF;
	border:1px solid #143968;
	border-radius: var(--border-radius, 0);
	background-color:#143968;
	white-space:nowrap;
}
main section a.sh-action:after { content:'\e613'; position:relative; display:none; padding-left:8px; font-family:'Icon'; font-size:0.8em; color:inherit; }
main section a.sh-action:hover:after {}
main section a.sh-action:hover { background-color: #303030; border-color:#303030;  }

main section > .content { padding:16px; }
main section > .content:after { content:''; display:table; clear:both; }
main section > footer {}
main section .layer { overflow:hidden; display:none; max-width:none; height:100%; position:absolute; top:0; right:0; bottom:0; left:0; z-index:-1; }
main section .layer:before { content:''; position:absolute; top:0; right:0; bottom:0; left:0; z-index:1; display:block; }
main section .layer > picture { position:absolute; top:auto; right:0; bottom:0; left:0; z-index:1; display:block; width:100%; height:100%; -webkit-transform:translate3d(0, 0, 0); transform:translate3d(0, 0, 0); -webkit-backface-visibility:hidden; backface-visibility:hidden; }
main section .layer > picture > img { display:block; width:100%; height:100%; }
main section .layer[data-type="none"] { display:none; }
main section .layer[data-type="scroll"] {}
main section .layer[data-type="parallax"] {}


/*
    SECTION INTRO
*/
#section-intro { padding: 120px 0 120px 0; }
#section-intro > header { position: relative; text-align: center; border: 0px solid #F0F; }
#section-intro > header p { font-size:22px; color:#666; }

#section-intro .sh-title { font-weight: 500; font-size:70px; line-height:1.2; }
#section-intro .sh-title:after { content:''; display:none; width:80px; height:2px; margin:24px auto 0 auto; font-size:0; line-height:0; background: var(--color-accent); }
#section-intro .sh-title small { padding-top: 16px; max-width: 90%; margin: 0 auto; font-weight: 400; font-size: 36px; line-height:1.4; }
#section-intro .sh-title > .icon { display: none; }

#section-intro .layer {}
#section-intro > .layer:before {}

#section-intro .content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
    margin:0 auto;
    padding: 32px 0 0 0;
    border: 0px solid #F0F;
    max-width: 1360px;
}
#section-intro .content:after {
    content: ''; 
    flex: auto;   
}
#section-intro article {
    position: relative;
    padding: 16px;
    width: 100%;
    margin: 0;
    border: 0px dotted #f0f;
}

#section-intro article header {
    
}

#section-intro article,
#section-intro article header a.media,
#section-intro article header a.media > img {    
    border-radius: var(--border-radius);
}

#section-intro article a.media {
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

#section-intro article header a.media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#section-intro article h2 {
    margin: 24px 0 12px 0;
    padding: 0;    
    font-weight:300;
    text-align: center;
}
#section-intro article h2 a {
    font-weight: 500;
    font-size: 28px;
    color: var(--color-accent);
    transition: all ease 0.3s;
}
#section-intro article header:hover h2 a {
    color: var(--color-accent-primary);
}

#section-intro article > .content {
    display: none;
    padding: 0;
}
#section-intro article > .content p {
    margin: 0;
}

@media only screen and (min-width:641px) {
    #section-intro article {
        padding: 16px;
        width: 50%;
    }
}
@media only screen and (min-width:1080px) {
    #section-intro article {
        width: 25%;
        padding: 20px 30px;
    }

    #section-intro article h2 {
        font-size: 24px;
    }

}

/* SECTION TAGCLOUD */
#section-tagcloud { padding: 0 0 80px 0;  }
#section-tagcloud > header { text-align: center; }
#section-tagcloud .sh-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--color-accent-primary);
}
#section-tagcloud .tagcloud {
    justify-content: center;
	align-items: center; 
}

@media only screen and (min-width: 1024px) {
    #section-tagcloud .tagcloud { gap: 12px; max-width: 70%; margin: 0 auto; border: 0px solid red; }
    #section-tagcloud .tagcloud a { font-size: 1.8rem; }
}


/* SECTION BRANDS */
#section-brands { padding:0; background-color: transparent; }
#section-brands > header { display: none; position: relative; border: 1px solid #F0F; }

#section-brands .sh-title { max-width: 640px; font-size:70px; line-height:1.2; font-weight:100; color:white; }
#section-brands .sh-title:after { content:''; display:none; width:80px; height:1px; margin:24px auto 0 auto; font-size:0; line-height:0; background:#CCC; }
#section-brands .sh-title small { padding-top: 0; font-size:70px; line-height:1.2; font-weight:100; color: #006272; }

#section-brands > .content { padding: 0; }
#brands-slider {
    overflow: hidden;
    position: relative;
    margin: auto;
    padding: 12px 0 0 0;
    width: 100%;
}

#brands-slider::before,
#brands-slider::after {
    content: '';
    position: absolute; top: 0; z-index: 2;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0) 100%);
    pointer-events: none;
}
#brands-slider::before { left: 0; }
#brands-slider::after { right: 0; transform: rotateZ(180deg); }

#brands-slider:hover ul.brands {
    animation-play-state: paused;
}

ul.brands {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    width: -webkit-fit-content;
    width: fit-content;
    height: 60px;
    animation: scroll 40s linear infinite;
    will-change: transform; 
}

ul.brands li {
    flex-shrink: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 8px;
    box-sizing: border-box;
}

ul.brands li img {
    max-height: 100%; 
    max-width: 100%;
    width: auto;
    height: auto;
    
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: filter 0.3s, opacity 0.3s;
    cursor: pointer;
}

ul.brands li:hover img {
    opacity: 1;
    /* filter: grayscale(0%); */
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

@media (max-width: 768px) {
    #brands-slide::before,
    #brands-slide::after {
        width: 150%; 
    }
    
    ul.brands li {
        width: 140px;
        padding: 8px;
    }
    
    ul.brands {
        height: 48px;
    }
}

/*
    SECTION FEATURE
*/
#section-feature { padding:48px 0; padding: 220px 0; 
}
#section-feature > header { text-align:center; }
#section-feature .sh-title { font-weight: 500; font-size: 80px; line-height:1.25; color: white; text-shadow: 0 0 20px rgba(0,0,0,.3); }
#section-feature .sh-title:after { content:''; display: none; width:80px; height:2px; margin:24px auto 0 auto; font-size:0; line-height:0; background: white; }
#section-feature .sh-title small { letter-spacing: 0.02em; text-shadow:none; font-weight:400; font-size:36px; }
#section-feature .sh-title > .icon { display:block; margin-bottom:16px; font-size:40px; color:#808080; }
#section-feature .layer { display:block; }
#section-feature > .layer:before {}
#section-feature header p { font-style:italic; font-size:24px; color:#FF00FF; }

main #section-feature a.sh-action {
    margin-top: 24px; padding: 0 24px;
    font-size:20px;
    line-height: 56px; 
    
    color: var(--color-accent-primary); color: white;
    border-radius: 50px;
    border: 2px solid white;
    background-color: rgba(2,73,172,0.5);
}
main #section-feature a.sh-action:hover {
    color: #0249ac;
    background-color: white;
}


/*
    SECTION NEWS
*/
#section-news { padding: 120px 0 100px 0; }
#section-news:before { display: none; top:0; left:50%; width:0; height:0; margin-left:-16px; border-left:16px solid transparent; border-right:16px solid transparent; border-top:16px solid #F8F8F8; }
#section-news > header { text-align:center; }
#section-news .sh-title { padding-bottom: 16px; font-weight: 500; font-size:70px; line-height:1.25; color: var(--color-accent); }
#section-news .sh-title:after { content:''; display:none; width:80px; height:2px; margin:24px auto 0 auto; font-size:0; line-height:0; background: var(--color-accent); }
#section-news .sh-title small { font-weight: 400; font-size: 36px; }
#section-news .sh-title > .icon { display:block; margin-bottom:0px; font-size:60px; color:#808080; }
#section-news .layer { display:block; }
#section-news .content { max-width: 1440px; }
#section-news article.teaser {
    /*background-color: #F0F;*/
}


/* SECTION ATTRIBUTION */
#section-attribution {}
#section-attribution > .content { padding:0; }
/* SECTION LOCATIONS */
#section-locations {}
#section-locations > header {}
#section-locations > .content { padding:0; }
#section-locations article:last-child { padding-bottom:24px; border-bottom:1px dotted #DDD; }
#section-locations article { padding-top:24px; border-top:1px dotted #DDD; }
#section-locations article:after { content:''; display:table; clear:both; }
#section-locations article header { float:left; width:40%; padding-right:24px; border:0px dotted #FF00FF; }
#section-locations article header img { display:block; border-radius: var(--border-radius, 0); }
#section-locations article .content { float:left; width:60%; border:0px dotted #FF00FF; }
#section-locations article .content p { margin:0; }



/* JOBS */
section#section-jobs { margin-bottom: 24px; padding:0; }
section#section-jobs h1 { color: #50565C; }
section#section-jobs > .content { padding:0; }
ul.jobs { border-top:1px dashed var(--color-accent); }
ul.jobs li { padding: 16px 0; border-bottom: 1px dashed var(--color-accent); }
ul.jobs li h2 { margin-bottom: 4px; padding-top: 0; font-size: 28px; color: var(--color-accent) }
ul.jobs li a { color: var(--color-accent-primary); }
ul.jobs li a:hover { opacity: 0.8; }
ul.jobs li p { margin: 0; color: #50565C; font-weight: 400; }

@media only screen and (max-width:640px) {
	#section-locations article header { float:none; width:100%; margin-bottom:8px; padding:0; }
	#section-locations article > .content { float:none; width:100%; }
	#section-contacts article header { float:none; width:100%; margin-bottom:8px; padding:0; }
	#section-contacts article > .content { float:none; width:100%; }

}

/* ARTICLE POST */
article.post header { position:relative; }
article.post header figure { position: relative; margin-bottom: 24px; border-radius: 12px; }
article.post header figure::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
article.post header img { display: block; border-radius: inherit; }
article.post header h1 small {
    display:block;
	padding-top:12px;
    font-size:0.6em;
    line-height:1.8;
    color:#AAA;
}
article.post footer { font-size:14px; }
article.post footer .meta { overflow:hidden; margin:0; padding:8px 0 8px 0; border-top:1px solid #DDD; }
article.post footer .meta a { font-weight:300; }
article.post footer .meta .label { display:none; color:rgb(169,161,147); }
article.post footer .meta li { display:inline-block; padding-right:12px; }
article.post footer .meta li.publication { }
article.post footer .meta li.author { display:none;  }
article.post footer .meta li.category {}
article.post footer .meta li.tag { display:none; }
article.post footer .meta li.comment { display:none; }

.single article.post footer { display: none; }
article.post.project footer .meta { border-bottom:1px solid #DDD; }

@media only screen and (min-width:641px) {
    .archive #main,
    .blog #main {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        align-content: stretch;
        gap: 24px;
        padding-right: 0;
    }

	.blog article, 
	.archive article {
		width: 46%;
		margin: 0;
	}
}

@media only screen and (min-width: 768px) {
    .archive #main,
    .blog #main {
        gap: 48px 24px;
        padding-right: 24px;
    }

	.blog article, 
	.archive article {
		width: 31%;
		margin: 0;
	}
}

/* PAGING */
ul.nav-paging { display: block; width: 100%; margin:60px 0 24px 0; }
ul.nav-paging > li { display:block; position:relative; float:left; } 
ul.nav-paging > li { padding-left:8px; color:#BBB; } 
ul.nav-paging > li:first-child { padding:0 8px 0 0; border-right:1px solid #DDD; } 
ul.nav-paging > li a {} 
ul.nav-paging > li a:hover {} 
.icon-chevron-left:before { content: '\e907'; transform: scaleX(-1); display:inline-block; position:relative; top: 0; left:0; padding-left:8px; font-size:1rem; }
.icon-chevron-right:before { content: '\e907'; display:inline-block; position:relative; top: 0; left:0; padding-left:8px; font-size:1rem; }

/* SEARCH RESULT */
#search-result {}
#search-result > .content { padding:0; }
#search-result article { margin-bottom:0; padding:24px 0; border-bottom: 1px solid #353535; }
#search-result article:first-of-type { border-top: 1px solid #353535; }
#search-result article h2 { margin:0 0 8px 0; padding:0; }
#search-result article h2 small {display:block; padding-top:12px; font-size:0.6em; line-height:1.8; color:#A0A0A0; }
#search-result article h2 a { color: #C0C0C0; }
#search-result article h2 a:hover { color: white;  }
#search-result article p { margin:0; }
#search-result footer {}

.list-teaser .teaser > a { position:relative; display:block; text-align:center; }
.list-teaser .teaser .image { overflow:hidden; position:relative; display:block; }
.list-teaser .teaser .image img { display:block; -webkit-transition:transform .3s ease-in-out; transition:transform .3s ease-in-out; -webkit-transform:scale3d(1,1,1); transform:scale3d(1,1,1);	} 
.list-teaser .teaser a:hover img { -webkit-transform:scale3d(1.1,1.1,1); transform:scale3d(1.1,1.1,1); } 
