/* Legacy (non-Wolmart) page sections still used by some views.
   Kept class-scoped to avoid impacting the Wolmart header/footer. */

/* Banner slider blocks (e.g. team, category, service, event, etc) */
.banner-slider {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 245px;
  position: relative;
}

.banner-slider > .bg {
  position: absolute;
  background-color: #313131;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.75;
}

.bannder-table {
  display: table;
  width: 100%;
  height: 100%;
}

.banner-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.banner-text h1 {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* Team listing */
.team-item {
  overflow: hidden;
  border: 1px solid #ddd;
  margin-top: 30px;
  position: relative;
}

.team-item img {
  width: 100%;
  height: auto;
}

.team-text {
  text-align: center;
  color: #fff;
  background: #3367c1;
  padding: 15px;
  position: relative;
  z-index: 99;
}

.team-text a {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  text-decoration: none;
}

.team-text p {
  margin: 0;
}

.team-social {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 20px;
  background: #eef1f5;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.team-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-social li {
  display: inline-block;
  margin-left: -5px;
}

.team-social li a {
  display: block;
  width: 35px;
  height: 33px;
  line-height: 33px;
  background: #f1f1f1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #eaeaea;
  text-decoration: none;
  transition: all 0.3s;
}

.team-social li a:hover {
  color: #fff;
  background: #3367c1;
  border-top: 1px solid #3367c1;
  border-bottom: 1px solid #3367c1;
}

.team-item:hover .team-social {
  bottom: 88px;
  visibility: visible;
  opacity: 1;
}

/* Blog card snippets used on category/news detail pages */
.blog-one-item {
  margin-top: 30px;
}

.blog-one-item img {
  width: 100% !important;
}

.blog-one-text {
  margin-top: 20px;
}

.blog-one-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-one-text ul li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}

.blog-one-text ul li:last-child {
  margin-right: 0;
}

.blog-one-text ul li i {
  color: #3367c1;
  margin-right: 5px;
}

.blog-one-text h3 {
  margin-bottom: 15px;
}

.blog-one-text h3 a {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.blog-one-text h3 a:hover {
  color: #3367c1;
}

.blog-one-text p {
  margin-bottom: 20px;
}

/* Minimal spacing helpers used by legacy views */
.pt_60 { padding-top: 60px !important; }
.pb_90 { padding-bottom: 90px !important; }
.pt_90 { padding-top: 90px !important; }
.pb_30 { padding-bottom: 30px !important; }
.mt_50 { margin-top: 50px !important; }
.mt_30 { margin-top: 30px !important; }

