Тематичні дослідження

/* ---- Collapsible PDF Section ---- */ .collapsible-container { max-width: 900px; margin: 3rem auto; padding: 0 1rem; font-family: sans-serif; text-align: center; } details.collapsible { border: 1px solid #ccc; border-radius: 10px; margin-bottom: 1.5rem; padding: 1rem 1.5rem; background: #f9f9f9; text-align: left; } summary { font-size: 1.4rem; font-weight: bold; cursor: pointer; position: relative; padding-right: 2rem; } summary::after { content: "▼"; position: absolute; right: 0; top: 0; transform: rotate(0deg); transition: transform 0.3s; } details[open] summary::after { transform: rotate(180deg); } .collapsible-content { margin-top: 1rem; text-align: center; } .collapsible-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; } .pdf-iframe { width: 100%; height: 600px; border: none; } @media (max-width: 768px) { .collapsible-container .pdf-iframe { height: 400px; } }