/*==============================================*/
/* 최근 글 리스트*/
/*==============================================*/

.recent-title-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.recent-title {
    color: var(--theme-board-title);
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 15pt;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.recent-container {
    padding: 7px 0px 7px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.recent-frame {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    height: auto;
    cursor: pointer;
}

.recent-ball {
    display: flex;
    background: #5c8cd5;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.recent-text-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    gap: 3px;
}

.recent-text {
    color: var(--theme-title-text);
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 11pt;
    font-weight: 400;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*==============================================*/
/* 최근 글 리스트(섬네일)*/
/*==============================================*/

.section-gallery-container {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.section-thumb-container {
    border-style: solid;
    border-color: #c8c7c7;
    border-width: 0.5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section-bom-title-badge {
    width: 18px;
    height: auto;
    object-fit: contain;
}

.section-thumbnail_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    min-width: 100%;
    min-height: 100%;

}

.section-gallery-title-container {
    display: flex;
    padding: 3px 0;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.section-gallery-title {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-shrink: 0;
    gap: 5px;
    position: relative;
    overflow: hidden;
    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--theme-section-title);
    width: 100%;
}
.section-gallery-info {
    display: var(--my-gallery-option-block);
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--theme-grey);
    width: 100%;
    height: auto;
}

.section-status-container {
    display: var(--my-gallery-option-block);
    padding: 5px 10px 5px 10px;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    color: #505050;
}

.section-status-bom-color {
    background-color: #fcf6e9;
}
.section-status-normal-color {
    background: #ffffff;
}
.section-lock {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
}
.section-like-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
}
.section-like-value {
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-comment-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
}
.section-comment-value {
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-view-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
}
.section-view-value {
    text-align: left;
    font-family: "Pretendard", sans-serif;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-view-value-high {
    color: #ff0000;
    font-weight: 800;
}


