/* FD2 Amenities — scoped block */
.fd2-amenities{ --ink:#2B1F17; --line:#E6E0D6; --chip:#FFF; --title:#5A3F2E; margin:18px 0; }
.fd2-amenities__title{ color:var(--title); font-weight:700; font-size:18px; margin:0 0 10px; }
.fd2-amenities__grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; padding:0; margin:0; list-style:none; }
.fd2-amenities__item{ display:flex; align-items:center; gap:8px; border:1px solid var(--line); border-radius:12px; padding:10px; background:var(--chip); color:var(--ink); }
.fd2-amenities__icon svg{ display:block; width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.fd2-amenities__label{ font-size:14px; line-height:1.3; }
.fd2-amenities__more{ margin-top:8px; }
.fd2-amenities__more > summary{ cursor:pointer; padding:8px 10px; border:1px dashed var(--line); border-radius:10px; color:#5A3F2E; width:max-content; }
@media (max-width:1024px){ .fd2-amenities__grid{ grid-template-columns:repeat(3,1fr);} }
@media (max-width:640px){ .fd2-amenities__grid{ grid-template-columns:repeat(2,1fr);} }
