﻿.club-contents-wrapper{
    margin: 30px 0;
}
.club-contents-wrapper h2 {
    color: #4c4c4c;
    font-size: 24px;
    font-weight: 500;
}
.club-contents-wrapper p {
    color: #7a7a7a;
    font-size: 16px;
}
.club-contents-boxes {
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    margin-top: 15px;
    padding: 10px;
    box-shadow: none;
    background-color: #f9f9f9;
    cursor: pointer;
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}
    .club-contents-boxes:hover {
        border: 1px solid rgba(0, 255, 0, 0.1);
        box-shadow: 1px 1px 15px rgba(0, 255, 0, 0.1);
        background-color: rgba(0, 255, 0, 0.03);
    }
    .club-contents-boxes h3{
        font-size: 14px;
    }
    .club-contents-boxes p {
        margin-bottom: 0;
        font-size: 12px;
        color: #999;
    }