﻿/* Object */

.object {
  border: 0.1rem solid #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 17.5rem;
  padding: 1rem;
}
    .object:hover,
    .object.active {
        border: 0.1rem solid transparent;
        -webkit-box-shadow: 0 0.3rem 0.7rem 0 #a8a8a8;
        -moz-box-shadow: 0 0.3rem 0.7rem 0 #a8a8a8;
        box-shadow: 0 0.3rem 0.7rem 0 #a8a8a8;
    }

.object-title h4 {
  margin-top: 0;
}

.object-image {
    background-color: #f8f8f9;
    color: #bebec3;
    font-weight: 600;
    height:12rem;
    overflow: hidden;
    padding: 2.5rem 1rem;
    text-align: center;
}
    .object-image img {
        width: 100%;
    }


.object-body {
    display: flex;
    flex-direction: column;    
    padding: 0.5rem;
    position: relative;
}

.object-actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
}

.object-title {
    display:block;
    font-size: 1.6rem;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
    .object-title:hover {
        background-color:#fff;
        overflow:visible;        
    }

.object-date {
    color: #bebec3;
    font-size: 1.1rem;
}

.object-summary {
    font-size: 1.3rem;
}
    .object-summary:empty {
        display: none;
    }

img.media-object {
    height: initial;    
    margin-right: 0;
    max-width: 14rem;
    width: initial;
}
