/* VC ToT Quiz Page Styles */

.tot-section {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    padding: 60px 0;
}

.tot-header {
    text-align: left;
    margin-bottom: 40px;
}

.tot-badge {
    display: inline-block;
    background: #333;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.tot-main-title {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tot-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.4;
}

.tot-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.tot-author {
    font-size: 14px;
    color: #666;
    margin-top: 24px;
}

/* Quiz Section */
.quiz-container {
    background: white;
    margin: 40px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quiz-header {
    background: linear-gradient(135deg, #1e4a8f 0%, #163779 100%);
    color: white;
    padding: 30px 40px;
    position: relative;
}

.quiz-number {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: #163779;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quiz-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.quiz-question {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.quiz-body {
    padding: 40px;
}

.quiz-options {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.quiz-options li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: #f8f8f8;
    border-left: 4px solid #163779;
    font-size: 1rem;
    /* line-height: 1.6; */
    transition: all 0.3s;
}

.quiz-options li:hover {
    background: #fff5f0;
    transform: translateX(5px);
}

.quiz-answer-section {
    background: #f0f9ff;
    padding: 25px 30px;
    margin: 30px -40px -40px -40px;
    border-top: 3px solid #163779;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: visible;
    /* 이미지 튀어나오는 부분 허용 */
}

.quiz-answer-content {
    flex: 1;
}

.quiz-answer-images {
    position: relative;
    width: 220px;
    height: 160px;
    flex-shrink: 0;
    margin-right: 20px;
}

.quiz-answer-img {
    width: 130px;
    height: auto;
    border-radius: 8px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
    position: absolute;
    transition: all 0.3s ease;
    background: white;
    padding: 5px;
}

.quiz-answer-img-1 {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.quiz-answer-img-2 {
    top: 40px;
    left: 60px;
    transform: rotate(6deg);
    z-index: 2;
}

.quiz-answer-img-3 {
    top: 20px;
    left: 30px;
    transform: rotate(-4deg);
    z-index: 1;
}

.quiz-answer-images:hover .quiz-answer-img-1 {
    transform: rotate(-15deg) translateX(-10px);
}

.quiz-answer-images:hover .quiz-answer-img-2 {
    transform: rotate(12deg) translateX(10px);
}

.quiz-answer-images:hover .quiz-answer-img-3 {
    transform: rotate(-10deg) scale(1.1);
}

.quiz-answer-label {
    font-size: 18px;
    font-weight: 700;
    color: #163779;
    margin-bottom: 16px;
}

.quiz-answer-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 12px;
}

/* Image Grid */
.tot-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.tot-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tot-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tot-image-item:hover img {
    transform: scale(1.05);
}

/* Decorative Elements */
.arrow-connector {
    text-align: center;
    color: #163779;
    font-size: 24px;
    margin: 20px 0;
}

/* Meme of the Month Section */
.meme-container {
    background: white;
    margin: 40px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #163779;
}

.meme-header {
    background: #f0f9ff;
    padding: 30px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.meme-label {
    font-size: 1rem;
    font-weight: 700;
    color: #163779;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meme-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
}

.meme-body {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.meme-text-content {
    flex: 1;
}

.meme-image-wrapper {
    flex-shrink: 0;
}

.meme-faker-img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.15);
    transform: rotate(30deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.meme-faker-img:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.2);
}

.meme-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.meme-content-text strong {
    color: #007bff;
}
/* Responsive */
@media (max-width: 768px) {
    .tot-main-title {
        font-size: 32px;
    }

    .tot-subtitle {
        font-size: 20px;
    }

    .quiz-header {
        padding: 25px 25px;
    }

    .quiz-answer-section {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .quiz-answer-images {
        width: 100%;
        height: 180px;
        margin-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .quiz-answer-img {
        width: 120px;
    }

    .quiz-answer-img-1 {
        left: 20%;
    }

    .quiz-answer-img-2 {
        left: 45%;
    }

    .quiz-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        right: 25px;
    }

    .quiz-question {
        font-size: 1rem;
    }

    .quiz-body {
        padding: 15px;
    }

    .tot-image-grid {
        grid-template-columns: 1fr;
    }

    .meme-body {
        flex-direction: column-reverse;
        padding: 20px 10px;
        gap: 20px;
        text-align: center;
    }

    .meme-faker-img {
        width: 90px;
        transform: rotate(15deg);
        margin-bottom: 20px;
    }

    .meme-faker-img:hover {
        transform: rotate(0deg) scale(1.05);
    }

    .quiz-options li {
        padding: 5px;
    }

    .quiz-answer-text{
        line-height: 1.6;
    }

    .meme-title {
        font-size: 1.2rem;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.4;
    }

    .meme-header{
        padding: 20px 20px;
    }
}

