``` --- # Add This CSS To `style.css` ```css /* ======================================== EDUCATION STYLE SINGLE WORKSHEET ======================================== */ .sw-single-wrapper{ max-width:1320px; margin:auto; padding:40px 24px 80px; } body.single-worksheet{ background:#fafafa; } /* BREADCRUMBS */ .sw-breadcrumbs{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-bottom:35px; font-size:14px; color:#666; } .sw-breadcrumbs a{ color:#2271b1; text-decoration:none; } /* HERO */ .sw-worksheet-hero{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:start; margin-bottom:70px; } /* BADGES */ .sw-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; } .sw-badge{ display:inline-flex; align-items:center; justify-content:center; background:#eef4ff; color:#2271b1; padding:8px 16px; border-radius:30px; font-size:13px; font-weight:600; } .sw-subject{ background:#fff4e8; color:#d97706; } /* TITLE */ .sw-title{ font-size:56px; line-height:1.15; margin-bottom:26px; font-weight:800; color:#111; } /* DESCRIPTION */ .sw-description{ font-size:18px; line-height:1.9; color:#444; } .sw-description p{ margin-bottom:22px; } /* DOWNLOAD BUTTON */ .sw-download-actions{ margin-top:35px; } .sw-download-btn{ display:inline-flex; align-items:center; justify-content:center; background:#2271b1; color:#fff !important; text-decoration:none; padding:18px 30px; border-radius:18px; font-size:16px; font-weight:700; transition:0.3s; box-shadow:0 10px 24px rgba(34,113,177,0.15); } .sw-download-btn:hover{ transform:translateY(-2px); } /* FEATURED SHEET */ .sw-featured-sheet{ background:#fff; border-radius:26px; border:1px solid #ececec; overflow:hidden; box-shadow:0 12px 30px rgba(0,0,0,0.05); } .sw-featured-sheet img{ width:100%; display:block; aspect-ratio:210 / 297; object-fit:contain; background:#fff; } /* SECTION HEADING */ .sw-section-heading{ margin-bottom:24px; } .sw-section-heading h2{ font-size:34px; font-weight:700; margin:0; } /* PDF PREVIEW */ .sw-pdf-section{ margin-bottom:80px; } .sw-pdf-preview{ background:#fff; border:1px solid #ececec; border-radius:24px; overflow:hidden; } .sw-pdf-preview iframe{ width:100%; height:600px; border:none; display:block; } /* RELATED */ .sw-related-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; } .sw-related-card{ background:#fff; border:1px solid #ececec; border-radius:18px; overflow:hidden; text-decoration:none; color:#111; transition:0.3s; } .sw-related-card:hover{ transform:translateY(-4px); border-color:#dcdcdc; } .sw-related-thumb{ aspect-ratio:210 / 297; background:#fff; } .sw-related-thumb img{ width:100%; height:100%; object-fit:contain; display:block; } .sw-related-title{ padding:14px; font-size:14px; line-height:1.6; font-weight:600; } /* MOBILE */ @media(max-width:1100px){ .sw-worksheet-hero{ grid-template-columns:1fr; } .sw-related-grid{ grid-template-columns:repeat(3,1fr); } } @media(max-width:768px){ .sw-single-wrapper{ padding:30px 18px 60px; } .sw-title{ font-size:38px; } .sw-description{ font-size:16px; } .sw-pdf-preview iframe{ height:420px; } .sw-related-grid{ grid-template-columns:repeat(2,1fr); } } @media(max-width:480px){ .sw-title{ font-size:30px; } .sw-download-btn{ width:100%; } }