@charset "UTF-8";
/* CSS Document */


.ee-accordion{margin:0}
li{overflow:visible}
h3,h2{text-align:left}
    .ccontainer h2, .ccontainer h3{text-align:center}

.note-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:16px;
    margin-top:20px;
}

.note-item{
    background:#f8fafc;
    border-top:5px solid #2563eb;
    border-left:none;
    border-radius:14px;
    padding:20px;
    line-height:1.55;
}

        .note-panel{
    overflow:hidden;
}
.note-item strong{
    display:block;
    margin-bottom:12px;
    font-size:1.25rem;
    color:#111827;
}

.note-highlight{
    background:#fff3cd;
    padding:2px 6px;
    border-radius:5px;
    font-weight:700;
}

@media(max-width:900px){
    .note-grid{
        grid-template-columns:1fr;
    }
}

.exam-breakdown {
    width: min(700px, 100%);
    margin: 25px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    font-size: 1.05em;
}

.exam-breakdown tr {
    transition: background 0.2s ease;
}

.exam-breakdown tr:hover {
    background: #fafafa;
}

.exam-breakdown tr:not(:last-child) td {
    border-bottom: 1px solid #ececec;
}

.exam-breakdown td {
    padding: 18px 22px;
    vertical-align: middle;
}

.exam-breakdown td:first-child {
    font-weight: 700;
    width: 40%;
}

.exam-breakdown td:nth-child(2) {
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
    width: 20%;
}

.exam-breakdown td:last-child {
    width: 40%;
    text-align: right;
}

.exam-breakdown .time-pill {
    display: inline-block;
    background: #f3f4f6;
    color: #555;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.95em;
    font-weight: 500;
}

@media (max-width:700px){

    .exam-breakdown,
    .exam-breakdown tbody,
    .exam-breakdown tr,
    .exam-breakdown td{
        display:block;
        width:100%;
    }

    .exam-breakdown tr{
        padding:12px 0;
    }

    .exam-breakdown td{
        text-align:left !important;
        padding:8px 20px;
    }

    .exam-breakdown td:last-child{
        padding-bottom:18px;
    }
}

.note-item.compact{
    padding:14px 18px;
    font-size:1rem;
}

.note-item.compact strong{
    display:block;
    margin-bottom:6px;
}

.note-panel{
    margin:30px 0;
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    border:1px solid #e6e6e6;
}

.note-header{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:22px;
    color:#1f2937;
}

.note-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    font-weight:bold;
}

.note-grid{
    display:grid;
    gap:16px;
}

.note-item{
    background:#f8fafc;
    border-left:5px solid #2563eb;
    padding:18px 20px;
    border-radius:12px;
    line-height:1.5;
}

.note-item strong{
    color:#111827;
}

.note-highlight{
    background:#fff3cd;
    padding:2px 6px;
    border-radius:5px;
    font-weight:700;
}

.writing-frames {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin:30px 0;
}

.frame-card{
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    border:1px solid #e7e7e7;
    transition:.2s ease;
}

.frame-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 28px rgba(0,0,0,.12);
}

.frame-title{
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:20px;
    color:#1f2937;
}

.frame-list{
    list-style:none;
    padding:0;
    margin:0;
}

.frame-list li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:16px;
    line-height:1.5;
}

.step-number{
    flex-shrink:0;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.9rem;
}

.frame-list li{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:16px;
    line-height:1.5;
    position:relative;
    padding-left:18px;
}

    .intro::before{
    background:#a855f7;
}
    
.support::before,
.challenge::before,
.conclusion::before,
.intro::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:4px;
    height:48px;
    border-radius:3px;
}

.support::before{
    background:#22c55e;
}

.challenge::before{
    background:#f59e0b;
}

.conclusion::before{
    background:#7c3aed;
}

.frame-note{
    margin-top:18px;
    padding:12px 15px;
    background:#f8fafc;
    border-radius:10px;
    font-size:.92rem;
    color:#555;
}

.worksheet-table {
    width:100%;
    border-collapse:collapse;
}

.worksheet-table td,
.worksheet-table th {
    border:1px solid #ddd;
    padding:10px;
    vertical-align:top;
}

.center {
    text-align:center;
}
