/**
 * Generic settings, resets, defaults
 */

.NewsAndMeetingList {
    list-style: none;
}

.naml__item {
    position: relative;
    display: block;
    *display: inline-block;
    *float: left;
    padding-bottom: 5em;
    box-shadow: 0 0 0 1px #ddd inset;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: transform .1s;
}

.naml__item:hover {
    -webkit-transform: scale(.95);
    transform: scale(.95);
}

.naml__infolink,
.naml__infolink:hover{
    color: rgba(25,25,25,.7);
    text-decoration: none;
}

.naml__itemImage,
.naml__itemImage img {
    height: auto;
    width: 100%;
    max-width: 100%;
}

.naml__itemImage img {
    border: 1px solid #d4d2d2;
    border-bottom: 0;
}

@media screen and (max-width: 766px) {
    .naml__item {
        margin-bottom: 2em;
    }
}

@media screen and (min-width: 768px) {
    .NewsAndMeetingList {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /*position: relative;*/
        /*left: -1%;*/
        /*width: 101%;*/
    }

    .naml__item {
        display: block;
        width: 48%;
        margin: 0 1% 1em;
    }
}

@media screen and (min-width: 1150px) {
    .naml__item {
        width: 23%;
        margin: 0 1% 1em;
    }
}

.naml__item--meeting:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 34px;
    padding: .5em 0;
    text-indent: -999em;
    z-index: 50;
    background: #006b9c url(/ui/uck-2016/img/icons/icon--meetingWhite.svg) no-repeat 50% 50%;
    background-size: 24px;
    pointer-events: none;
}

.naml__item--news:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 34px;
    padding: .5em 0;
    text-indent: -999em;
    z-index: 50;
    background: #006b9c url(/ui/uck-2016/img/icons/icon--bookWhite.svg) no-repeat 50% 50%;
    background-size: 24px;
    pointer-events: none;
}

.naml__dateLocation {
    margin-bottom: 0;
    color: rgba(25,25,25,.7);
    text-decoration: none;
}

.naml__metaData {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

.naml__registrations {
    display: block;
    white-space: nowrap;
    margin: 3px 10px 3px 0;
    padding-left: 20px;
    background: transparent url(/ui/uck-2016/modules/mod_meeting2/img/snippets/icon-registrations.png) no-repeat 0 5px;
}

.naml__titlePane {
    margin: 0 15px;
    padding: 15px 0;
}

.naml__itemTitle {
    width: 100%;
    margin: 0;
    overflow-wrap: break-word;
    font-size: 1.3em;
    color: #11588c;
}

.naml__descPane {
    margin: 0 15px;
}

.naml__description {
    padding-bottom: 15px;
    color: rgba(25,25,25,.7);
    text-decoration: none;
}

.naml__description p:last-child {
    margin-bottom: 0;
}

.naml__footerPane {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.naml__more {
    display: block;
    overflow: hidden;
    max-width: 100%;
    padding: 10px 15px;
    border-top: 1px solid #e6e6e6;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.naml__more--information {
    padding-left: 38px;
    background: transparent url(/ui/uck-2016/modules/mod_meeting2/img/snippets/icon-read-more.png) no-repeat 15px 14px;
}

.naml__no--more--seats--available,
.naml__register {
    padding-left: 38px;
    background: transparent url(/ui/uck-2016/modules/mod_meeting2/img/snippets/icon-register.png) no-repeat 15px 14px;
}