/* Forum View Styles */

/* View Header */
.view-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.view-header h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.view-header .info {
    display: flex;
    color: #666;
    font-size: 1.6rem;
}

.view-header .info span {
    margin-right: 20px;
}

.view-header .info .hit::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    margin-right: 20px;
    vertical-align: middle;
}

/* View Content */
.view-content {
    min-height: 300px;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 1.6rem;
    color: #333;
}

/* View Files */
.view-files {
    background: #f8f8f8;
    padding: 20px 30px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.view-files h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.view-files ul li {
    margin-bottom: 10px;
}

.view-files ul li:last-child {
    margin-bottom: 0;
}

.view-files ul li a {
    color: #3f579e;
    font-size: 1.5rem;
    text-decoration: underline;
}

.view-files ul li i {
    margin-right: 5px;
}

/* View Buttons */
.view-buttons {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.view-buttons .btn-list {
    display: inline-block;
    min-width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #3f579e;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
}

/* View Navigation */
.view-nav {
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.view-nav > div {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.view-nav .label {
    width: 100px;
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
}

.view-nav a {
    flex: 1;
    font-size: 1.5rem;
    color: #666;
}

.view-nav .prev .label::before {
    content: "◀";
    margin-right: 10px;
    font-size: 0.8rem;
    vertical-align: middle;
}

.view-nav .next .label::before {
    content: "▶";
    margin-right: 10px;
    font-size: 0.8rem;
    vertical-align: middle;
}

/* 브로슈어 스타일 */
.brochure-list {
    padding: 40px 0;
}

.brochure-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.brochure-cover {
    flex: 0 0 300px;
    margin-right: 50px;
}

.brochure-cover img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brochure-info {
    flex: 1;
}

.brochure-info h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.brochure-info p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-download {
    display: inline-block;
    min-width: 180px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    background: #3f579e;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #2d4278;
}

/* Tab Menu Styles */
.tab-menu {
    padding-bottom: 80px;
}

.tab-menu ul {
    display: flex;
    margin-left: -30px;
    justify-content: center;
}

.tab-menu ul li {
    font-size: 4rem;
    font-weight: 700;
    color: #ccc;
    padding: 0 30px;
    position: relative;
    cursor: pointer;
}

.tab-menu ul li a {
    color: #ccc;
}

.tab-menu ul li::after {
    content: "";
    width: 4px;
    height: 30px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.tab-menu ul li:last-of-type::after {
    display: none;
}

.tab-menu ul li.active {
    color: var(--blue);
}

.tab-menu ul li.active a {
    color: var(--blue);
}

/* Brochure Box Layout */
#brochure.brochure .tab-content {
    margin-bottom: -80px;
}

#brochure.brochure .box {
    display: flex;
    margin-bottom: 80px;
}

#brochure.brochure .box .image {
    width: 786px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#brochure.brochure .box figure {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 69%;
    border-radius: 20px;
}

#brochure.brochure .box figure img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#brochure.brochure .box .info {
    width: calc(100% - 786px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    text-align: center;
    color: #555;
}

#brochure.brochure .box .info .title {
    color: #111;
}

#brochure.brochure .box .info .title span {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 20px;
}

#brochure.brochure .box .info h5 {
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 10px;
}

#brochure.brochure .box .info h4 {
    font-size: 5.2rem;
    padding-bottom: 30px;
}

#brochure.brochure .box .info > span {
    display: inline-block;
    width: 100%;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 30px;
}

#brochure.brochure .box .info img {
    margin-bottom: 80px;
}

#brochure.brochure .box .info p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* Buttons */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 80px;
    border-radius: 100px;
    position: relative;
}

.button::before {
    display: inline-block;
    margin-right: 15px;
}

.button::after {
    display: inline-block;
    margin-left: 15px;
}

.blue-btn {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--blue);
}

.blue-btn.download::before {
    content: "↓";
    font-size: 1.8rem;
}

.blue-btn.shopping::before {
    content: "🛒";
    font-size: 1.8rem;
}

/* Responsive */
@media screen and (max-width: 1250px) {
    .view-header h3 {
        font-size: 2.4rem;
    }
    
    .brochure-item {
        padding: 30px;
    }
    
    .brochure-cover {
        flex: 0 0 250px;
        margin-right: 30px;
    }
    
    .brochure-info h3 {
        font-size: 2.4rem;
    }
    
    .tab-menu ul li {
        font-size: 3.2rem;
    }
    
    #brochure.brochure .box .image {
        width: 50%;
    }
    
    #brochure.brochure .box .info {
        width: 50%;
        padding: 0 30px;
    }
    
    #brochure.brochure .box .info h5 {
        font-size: 2rem;
    }
    
    #brochure.brochure .box .info h4 {
        font-size: 4.5rem;
        padding-bottom: 15px;
    }
    
    #brochure.brochure .box .info > span {
        font-size: 2.2rem;
    }
    
    #brochure.brochure .box .info img {
        margin-bottom: 40px;
    }
    
    #brochure.brochure .box .info p {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    #brochure.brochure .box .info p br {
        display: none;
    }
    
    #brochure.brochure .box .info .title span {
        font-size: 2.2rem;
    }
    
    .button {
        width: 230px;
        height: 70px;
    }
}

@media screen and (max-width: 768px) {
    .view-header h3 {
        font-size: 2rem;
    }
    
    .view-buttons .btn-list {
        min-width: 120px;
        height: 45px;
        line-height: 45px;
    }
    
    .view-nav .label {
        width: 80px;
    }
    
    .brochure-item {
        flex-direction: column;
        padding: 25px;
    }
    
    .brochure-cover {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .brochure-info {
        text-align: center;
    }
    
    .brochure-info h3 {
        font-size: 2.2rem;
    }
    
    .brochure-info p {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .btn-download {
        min-width: 150px;
        height: 50px;
        line-height: 50px;
    }
    
    #brochure.brochure .box {
        flex-direction: column;
        align-items: center;
    }
    
    #brochure.brochure .box .image {
        max-width: 786px;
        width: 100%;
    }
    
    #brochure.brochure .box .info {
        width: 100%;
        padding: 0;
        padding-top: 40px;
    }
    
    #brochure.brochure .box .info h4 {
        font-size: 3.8rem;
    }
    
    #brochure.brochure .box .info > span {
        font-size: 2rem;
    }
    
    #brochure.brochure .box .info .title span {
        font-size: 2rem;
    }
    
    .button {
        width: 190px;
        height: 55px;
    }
    
    .blue-btn {
        font-size: 1.6rem;
    }
} 