/* ============================================================
   LAYOUT.CSS - SLIMMED VERSION
   Date: 2025-12-05
   Original: 18KB (1005 lines) → Slimmed: ~5KB (~200 lines)
   
   Removed: Header, navigation, footer content, mobile header styles
   These are now in component CSS modules:
   - Header.module.css
   - Footer.module.css  
   - HomeHeader.module.css
   
   Backup: archived/css/deprecated-2024-12-05/layout.css.backup
   ============================================================ */

/* ----------------------------------------------------------------
   CORE LAYOUT CONTAINERS (KEEP)
---------------------------------------------------------------- */
#primary {
  margin-top: 120px;
}

#page-wrapper {
  width: 1024px;
  margin: 0 auto;
  position: relative;
}

/* ----------------------------------------------------------------
   FOOTER WRAPPER (KEEP - Shell only)
---------------------------------------------------------------- */
#footer-wrapper {
  background-color: #f7f7f7;
  padding: 44px 0;
  margin-top: 50px;
}

.home #footer-wrapper {
  display: none;
}

/* Home footer: default flow placement (desktop) */
body.home {
  padding-bottom: 0;
}

.home-footer {
  position: static;
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
  background: transparent;
  border-top: none;
  padding: 20px 16px;
}

.home-footer a {
  display: inline-block;
}

/* ----------------------------------------------------------------
   ENTRY HEADER (shared article/page headers)
---------------------------------------------------------------- */
.entry-header {
  min-height: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  margin-bottom: 33px;
}

.entry-header .title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-right: 250px;
}

.entry-header .title a {
  -webkit-font-smoothing: antialiased;
  color: #005f69;
}

.entry-header .details {
  font: 400 16px/22px "Figtree", Times, serif;
  color: #666;
  font-style: normal;
  position: absolute;
  right: 0;
  bottom: 10px;
  text-align: right;
}

.page .entry-header .page-title {
  margin-right: 0;
}

/* ----------------------------------------------------------------
   LIST GROUP
---------------------------------------------------------------- */
.list-group:first-child {
  border: 0;
}

.list-group section {
  margin-top: 16px;
}

.list-group section.artists {
  height: 360px;
}

.list-group .intro {
  text-align: center;
}

/* ----------------------------------------------------------------
   SIDEBAR COMPONENTS
---------------------------------------------------------------- */
.sidebar-container {
  text-align: center;
}

.sidebar-container .video {
  margin-bottom: 20px;
}

.widget-title {
  font: 400 28px/30px "Playfair Display", Times, serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  margin: 0px auto;
  width: 160px;
  text-align: center;
  color: #005f69;
}

/* ----------------------------------------------------------------
   SHARED UTILITIES: DIVIDER
---------------------------------------------------------------- */
.divider {
  width: 10px;
  height: 2px;
  border-bottom: 1px solid #ccc;
  margin: 15px auto;
  display: block;
}

.mobile-only.divider {
  display: none;
}

/* ----------------------------------------------------------------
   INTRO SECTIONS
---------------------------------------------------------------- */
.intro {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar-container .intro {
  margin-bottom: 50px;
}

.services .intro {
  margin-top: 40px;
}

.tax-video-categories .intro {
  margin-top: 40px;
}

.intro .title,
.sidebar-container .intro .title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.intro .excerpt,
#content .excerpt {
  font: normal 13px/21px "Figtree", "Figtree";
}

/* ----------------------------------------------------------------
   LOCATIONS
---------------------------------------------------------------- */
.locations ul {
  margin: 0;
  padding: 0;
}

.locations li {
  list-style: none;
  text-align: center;
}

.locations li .title {
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0;
}

.locations p {
  color: #666;
  line-height: 15px;
}

/* ----------------------------------------------------------------
   VISIBILITY TOGGLES
---------------------------------------------------------------- */
/* Visibility toggles moved to base.css */

/* ----------------------------------------------------------------
   RESPONSIVE: MOBILE GRID RESETS
---------------------------------------------------------------- */
@media all and (max-width: 768px) {

  .container_12,
  .site-content {
    width: 100%;
    overflow: hidden;
  }

  .container_12 .grid_3,
  .site-content .grid_3,
  .container_12 .grid_4,
  .site-content .grid_4,
  .container_12 .grid_6,
  .site-content .grid_6,
  .container_12 .grid_8,
  .site-content .grid_8,
  .container_12 .grid_9,
  .site-content .grid_9,
  .container_12 .grid_12,
  .site-content .grid_12 {
    width: 100%;
    float: none;
    clear: both;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }

  #page-wrapper {
    width: 100%;
  }

  #primary {
    margin-top: 20px;
  }

  .tax-video-categories #primary {
    margin-top: 50px;
  }



  body {
    margin: 0;
    padding-top: 60px;
  }

  body.home {
    background-color: #fff;
  }

  /* Home menu mobile adjustments */
  .home .home-menu {
    text-align: center;
    position: relative;
    width: 100%;
    margin: 10px auto 0;
    opacity: 1;
  }

  .home .home-menu h1 {
    margin: 0;
    height: 48px;
    line-height: 48px;
    color: #fff;
  }

  .home #menu-home li {
    float: none;
    display: inline-block;
  }

  .home #menu-home li a {
    color: #fff;
    font-weight: 700;
    font-family: "Playfair Display", serif;
  }

  #menu-home {
    display: block;
  }

  /* Background images mobile */
  #bg-imgs {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    min-height: 220px;
    max-height: none;
  }

  #bg-imgs li {
    display: block;
    width: 100%;
    float: left;
    top: auto;
    left: auto;
    position: relative;
  }
}