.organizations-container {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.org-chip {
    display: inline-block;
    padding: 0 25px;
    margin: 7px 29px;
    height: 70px;
    width: 30%;
    line-height: 1;
    border-radius: 25px;
    background: #f1f1f1;
    box-shadow: var(--primary-shadow);
    text-decoration: none;
}

.org-chip:hover {
    background-color: #ffd700;
}

.org-chip img {
    float: left;
    margin: 0 10px 0 -33px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid maroon;
}

.org-chip .org-name {
    margin: 18px;
}

.org-name h4 {
    margin: -10px;
}

.org-name h4 {
    text-decoration: none;
}

.org-name h4 p {
    font-size: 12px;
    margin-top: -52px
}

@media screen and (max-width: 600px) {
    .org-chip {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

.org-cover {
    width: 100%;
}

.org-title {
    font-size: 16px;
    display: block;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 1px rgba(0,0,0,0.5);
}

.org-details {
    color: #ccc;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    max-height: 0;
    line-height: 18px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease-out, max-height 0.4s ease-out, margin 0.4s;
}

.thumb-box a:hover .org-details {
    opacity: 1;
    max-height: 100px;
    margin-top: 5px;
    transition: opacity 0.4s ease-out, max-height 0.9s ease-out;
}