@charset "utf-8";

/* webhard_review skin style.css */

/* 게시판 헤더 */
/*.page-header {
    text-align: center;
    padding: 60px 0 40px;
}*/
.page-title-styled {
    font-size: 2.5rem;
    font-weight: 800;
    color: #64ffda;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-desc-styled {
    color: #8892b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 리스트 그리드 */
.review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .review-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-list {
        grid-template-columns: 1fr;
    }
}

/* 리뷰 카드 */
.review-card {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #64ffda;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.review-content {
    padding: 25px;
    flex-grow: 1;
}

.review-category-tag {
    display: inline-block;
    color: #64ffda;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 4px 10px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 4px;
}

.review-title {
    color: #ccd6f6;
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.review-desc {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.read-more {
    color: #64ffda;
    font-weight: 600;
}

/* 상세 보기 (View) */
.review-view-container {
    background: rgba(17, 34, 64, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 50px;
    margin-top: 40px;
}

.review-view-header {
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.review-view-title {
    font-size: 2.2rem;
    color: #ccd6f6;
    line-height: 1.3;
    margin-bottom: 20px;
}

.review-view-meta {
    color: #8892b0;
    font-size: 0.95rem;
    display: flex;
    gap: 20px;
}

.view-category {
    color: #64ffda;
    font-weight: 600;
}

.view-text {
    color: #a8b2d1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.view-text h2 {
    color: #64ffda;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.view-text p {
    margin-bottom: 20px;
}

.view-text strong {
    color: #fff;
}

.article-img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

/* 글쓰기 페이지 (Write) */
#bo_w {
    background: rgba(17, 34, 64, 0.7);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

#bo_w .frm_input {
    background: #0a192f;
    border: 1px solid #233554;
    color: #ccd6f6;
    padding: 12px;
    border-radius: 4px;
}

#bo_w .frm_input:focus {
    border-color: #64ffda;
    outline: none;
}

#bo_w label {
    color: #64ffda;
    margin-bottom: 10px;
    display: inline-block;
}

#bo_w .write_div {
    margin-bottom: 25px;
}

#bo_w select {
    background: #0a192f;
    color: #ccd6f6;
    border: 1px solid #233554;
    padding: 10px;
    border-radius: 4px;
}

.btn_submit {
    background: #64ffda !important;
    color: #0a192f !important;
    border: none !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.btn_cancel {
    background: #233554 !important;
    color: #8892b0 !important;
    border: none !important;
}