/*
 Theme Name:  Allagash Astra Child
 Theme URI:   https://allagash-waterway.com
 Description: Child theme for Astra for Allagash-Waterway.com
 Author:      [Your Name]
 Template:    astra
 Version:     1.0.0
*/

/* Import Astra parent styles */
@import url("../astra/style.css");

/* Basic two-column layout for the Sites template */
.aw-sites-wrapper {
  display: flex;
  gap: 2rem;
}

.aw-sites-sidebar {
  flex: 0 0 260px;
  max-width: 260px;
}

.aw-sites-main {
  flex: 1;
}

/* Make it stack on small screens */
@media (max-width: 768px) {
  .aw-sites-wrapper {
    flex-direction: column;
  }
  .aw-sites-sidebar {
    max-width: 100%;
  }
}

/* Force sidebar to appear on the left on the Sites page (ID 59) */
body.page-id-59.ast-right-sidebar .ast-container {
  flex-direction: row-reverse;
}