/* WRAPPER */
.as-wrapper {
  padding: 0;
}

/* GRID LAYOUT */
.as-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;  
  align-items: start;
}
.as-left {
  position: static;
}
.as-items {
  /*margin: -15px;*/
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.as-item {
  display: block;
  position: relative;
  width: 100%;
  /*padding: 15px;*/
  margin: 0 0 18px 0;
  background: transparent;
  box-sizing: border-box;
}
@media (min-width: 759px) {
  .as-grid {
    grid-template-columns: 1fr 4fr;    
    align-items: start;
  }
  .as-item {
    width: 50%;
    padding: 14px;
  }
  .as-left {
    position: sticky;
    top: 24px;
  }
}
@media (min-width: 1280px) {
  .as-item {
    width: 33.333%;
  }
}

/* SEARCH */
.as-search {
  margin: 0 0 36px 0;
}
.as-search-input {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}
.style-light input.as-search-input:not([type="submit"]):not([type="button"]):not([type="number"]):not([type="checkbox"]):not([type="radio"]):focus {
  border-color: #cccccc;
}

/* FILTERS */
.as-filters-heading {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .1em;
  color: #f5333f;
  
  margin: 16px 0 14px;
  white-space: nowrap;
}
.post-content ul.as-filters-list:not(.no-list):not(.navigation):not(.pagination):not(.term-filters-list):not(.uncode-woocommerce-sorting-dropdown):not(.nav-tabs) {
  list-style: none;
  margin: 0;
  padding: 0;
}
.as-filters-wrap ul.as-filters-list li {
  padding: 0 0 5px 0;
}
.as-filters-wrap ul.as-filters-list li a {
  display: inline-block;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  
  font-size: 16px;
  line-height: 1.3;
}
.as-filters-wrap ul.as-filters-list li a.is-checked {
  color: #f5333f;
}

/* RIGHT COLUMN */
.as-right {
  width: 100%;
}

/* CARD */
.as-item .card {
  background: #f7f7f7;
  padding: 32px 28px;
  width: 100%;
  min-height: 260px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border: none;
  box-shadow: none;
}
@media (min-width: 959px) {
  .as-item .card {
    padding: 36px;
  }
}

/* ICON */
.as-item .featured-image img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  max-width: none;
}

/* TEXT */
.as-item .text .title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0px 0 15px;
}

/* CONTACT LINES */
.as-item .line {
  display: block;
  margin-bottom: 6px;
  color: #222;
  font-weight: 400;
}
.as-item .line a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 2px 0;
}
/* ICONS FOR CONTACT LINES */
.as-item .line.phone a::before,
.as-item .line.email a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain;     mask-size: contain;
  -webkit-mask-position: center;  mask-position: center;
}

.as-item .line.phone a::before {
  -webkit-mask-image: url("https://alpineintel.com/wp-content/uploads/2025/10/phone-icon.svg");
  mask-image: url("https://alpineintel.com/wp-content/uploads/2025/10/phone-icon.svg");
}

.as-item .line.email a::before {
  -webkit-mask-image: url("https://alpineintel.com/wp-content/uploads/2025/10/mail-icon-02.svg");
  mask-image: url("https://alpineintel.com/wp-content/uploads/2025/10/mail-icon-02.svg");
}

/* CONTACT HOVER */
.as-item .line a:hover,
.as-item .line a:focus {
  color: #F5333F;
  text-decoration: none;
}

/* BUTTON */
.as-item .link .btn.submit {
  display: inline-block;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid #111;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
@media (max-width: 569px) {
  .as-item .link .btn.submit {
    transform: scale(1)
  }
}

.as-item .link .btn.submit:hover {
  background: transparent;
  color: #111;
  border-color: #111;
}

.as-item .link .btn.submit i {
  margin-left: 4px;
}




/*.as-filters-wrap ul.as-filters-list li::before,
.as-filters-wrap ul.as-filters-list li:before,
.as-filters-wrap ul.as-filters-list li::marker {
  content: "" !important;
  display: none !important;
}

.as-filters-list {
  margin: 0 !important;
  padding: 0 !important;
}

.as-filters-list li {
  margin: 14px 0 !important;
}*/