.accordion-img-wrapper { position: relative; width: 100%; height: 250px; overflow: hidden; border-radius: 12px; box-shadow: 0 .25rem .5rem rgba(0,0,0,.1); display: flex; justify-content: center; align-items: center; }
.accordion-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.accordion-content-card { border: 1px solid #e0e0e0; border-radius: .75rem; background: #fafafa; padding: 1rem; transition: all .3s ease; }
.accordion-content-card:hover { background: #fff; box-shadow: 0 .5rem 1rem rgba(0,0,0,.1); transform: translateY(-2px); }
.accordion-text:last-child { margin-bottom: 0; }
@media (max-width: 768px) { .accordion-img-wrapper { aspect-ratio: 4/3; max-height: 220px; } .accordion-text { margin-top: .75rem; } }
