/*
    edificiosantamaria.cl
    article.css
*/
@charset "utf-8";

.article-card {
    
}

.article-card .card-img-top {
    display: block;
    height: 460px;
    object-fit: cover;
    object-position: center center;
}

.article-card .card-body {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 280px;
}

.article-card .card-body::after {
    content: '';
    display: block;
    position: absolute;
    top: 5%;
    left: 2%;
    width: 100%;
    height: 280px;
    border: 2px solid white;
}

.article-card .card-body .card-title {
    font-family: 'Baloo Tamma 2', cursive;
    font-size: 1.4em;
    font-weight: 300;
}

.article-card .card-body .card-title > small {
    display: block;
    color: #c0c0c0;
    font-weight: 400;
    font-size: 0.5em;
}

@media (min-width: 576px) { }

@media (min-width: 768px) { }

@media (min-width: 992px) { 
    .article-card .card-body .card-title {
        font-size: 3.1em;
    }
}

@media (min-width: 1200px) { }

.article-card .card-action {
    background-color: transparent;
    position: absolute;
    display: block;
    bottom: 5%;
    right: 5%;
    width: 280px;
    padding: 10px 20px;
    border: 2px solid white;
    font-size: 1.4em;
    text-align: center;
    text-transform: uppercase;
    color: white;
    text-shadow: -1px 1px 1px rgba(30, 30, 30, 1);
    text-decoration: none;
    -webkit-transition: all .2s ease-out;
       -moz-transition: all .2s ease-out;
         -o-transition: all .2s ease-out;
            transition: all .2s ease-out;
}

.article-card:hover .card-action {
    background-color: #b7cbfe;
    color: white;
}

/* article-wrapper */
.article-wrapper {
    
}

.article-wrapper .article-meta {
    font-size: 1.4em;
    background-color: #b7cbfe;
    color: white;
}

.article-wrapper .article-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center center;
}