﻿
/*
<div.paragraphContent>
    <div.eachActivity_style06>
         <div.imgList>
            <a><img.pic> <img.pic></a>   .... width, height in px
         </div>
         <div.caption>
            <a>Caption</a>
         </div>
     </div>
</div>
*/

.paragraphContent {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
}

.eachActivity_style06 {
    box-sizing: border-box;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: none 0;
    padding: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height : 300px;
}

    .eachActivity_style06 .imgList {
        display: flex;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .eachActivity_style06 .imgList .pic
    {
        margin : 0.5rem;
        max-width : 100%;
    }

    .eachActivity_style06 .caption {
        font-weight: bolder;
        text-align: center;
        max-width: 100%;
    }

    .eachActivity_style06 div.caption a {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        /*-webkit-line-clamp: 2;*/
        -webkit-box-orient: vertical;
    }

