/* base */
.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    box-sizing: border-box;

    color: rgb(var(--regulartxt_rgb));
}

.card .head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    width: 100%;

    color: rgb(var(--theme_rgb));
}

.card .head h2 {
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 1.5px;
}

.card .head h2 .ico {
    display: none;
}

.card .head h2 .more {
    display: none;
}

.card .head hr {
    outline: none;
    border: none;
    width: 100%;
    height: 1.6px;
    margin-top: 8px;
    background-color: rgb(var(--theme_rgb));
}

.card .body {
    width: 100%;
}

/* head-in */
.card.head-in {
    padding: 20px 30px;
    border-radius: 20px;
    background-color: white;
}

/* head-out */
.card.head-out .head hr {
    margin-top: 10px;
}

.card.head-out .body {
    padding: 20px 30px;
    margin-top: 24px;
    border-radius: 15px;
    background-color: white;
    box-sizing: border-box;
}

/* title-left */
.card.title-left h2 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.card.title-left h2 .more, .card.title-left h2 .more:visited {
    display: inline-block;
    color: rgb(156, 156, 156);
    font-size: 14px;
}

/* title-center */
.card.title-center h2 {
    display: flex;
    justify-content: center;
    align-items: center;
}