/*
Theme Name: DE-child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Description: Child theme for Twenty Twenty-Five
Author: Your Name
Author URI: https://yourwebsite.com
Template: twentytwentyfive
Version: 1.0.0
*/

/* Add your custom styles below this line */ 

/* Toggle button styling */
.see-more-block summary {
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: #f3f3f3;
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    list-style: none; /* remove default arrow */
  }
  .see-more-block summary:hover {
    background: #e2e2e2;
  }
  
  /* Hide "See less" by default */
  .see-more-btn .see-less-text {
    display: none;
  }
  .see-more-btn .see-more-text {
    display: inline;
  }
  
  /* When open, swap text */
  .see-more-block[open] .see-less-text {
    display: inline;
  }
  .see-more-block[open] .see-more-text {
    display: none;
  }
  
  /* Smooth collapse/expand */
  .see-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .see-more-block[open] .see-more-content {
    max-height: 2000px; /* big enough to fit content */
  }
  