/* line 17, view.scss */
.news-grid {
  max-width: 1320px;
  margin: 0 auto; }
  /* line 21, view.scss */
  .news-grid .nw-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start; }
  /* line 29, view.scss */
  .news-grid .nw-filters {
    background: #f2f5d2;
    border: 1px solid rgba(226, 6, 19, 0.18);
    border-radius: 14px;
    padding: 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 20px; }
  /* line 42, view.scss */
  .news-grid .nw-filter-toggle {
    display: none; }
  /* line 48, view.scss */
  .news-grid .nw-filter-panel {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.35s ease; }
  /* line 53, view.scss */
  .news-grid .nw-filter-panel-inner {
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 22px; }
  /* line 62, view.scss */
  .news-grid .nw-filter-group {
    border: 1px solid rgba(226, 6, 19, 0.18);
    border-radius: 10px; }
  /* line 66, view.scss */
  .news-grid .nw-filter-group-header {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 14px;
    cursor: pointer;
    color: #e20613;
    font-size: 0.85rem; }
    /* line 79, view.scss */
    .news-grid .nw-filter-group-header .chevron {
      font-size: 0.72rem;
      transition: transform 0.3s ease; }
  /* line 84, view.scss */
  .news-grid .nw-filter-group.nw-open .nw-filter-group-header .chevron {
    transform: rotate(180deg); }
  /* line 87, view.scss */
  .news-grid .nw-filter-group-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease; }
  /* line 92, view.scss */
  .news-grid .nw-filter-group.nw-open .nw-filter-group-panel {
    grid-template-rows: 1fr; }
  /* line 98, view.scss */
  .news-grid .nw-filter-group-inner {
    min-height: 0;
    overflow: hidden; }
  /* line 102, view.scss */
  .news-grid .nw-filter-group .nw-pills {
    padding: 0 14px 14px; }
  /* line 107, view.scss */
  .news-grid .nw-group-count {
    display: inline-block;
    background: #e20613;
    color: #f2f5d2;
    border-radius: 999px;
    padding: 1px 8px;
    font-size: 0.68rem;
    margin-left: 6px;
    vertical-align: middle; }
  /* line 119, view.scss */
  .news-grid .nw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
  /* line 124, view.scss */
  .news-grid .nw-pill {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid #e20613;
    background: #f2f5d2;
    color: #e20613;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s; }
    /* line 135, view.scss */
    .news-grid .nw-pill:hover {
      background: #fdca9f; }
    /* line 136, view.scss */
    .news-grid .nw-pill.nw-active {
      background: #e20613;
      color: #f2f5d2; }
  /* line 143, view.scss */
  .news-grid .nw-filter-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    border-top: 1px solid rgba(226, 6, 19, 0.18);
    padding-top: 14px; }
  /* line 151, view.scss */
  .news-grid .nw-count {
    color: #e20613;
    font-size: 0.9rem; }
  /* line 155, view.scss */
  .news-grid .nw-clear {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: none;
    border: none;
    color: #e20613;
    cursor: pointer;
    font-size: 0.78rem;
    text-decoration: underline;
    padding: 0; }
  /* line 167, view.scss */
  .news-grid .nw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px; }
  /* line 173, view.scss */
  .news-grid .nw-card {
    background: #f2f5d2;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06); }
    /* line 186, view.scss */
    .news-grid .nw-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 192, view.scss */
  .news-grid .nw-card-thumb {
    aspect-ratio: 3 / 2;
    background: #ddd;
    position: relative;
    overflow: hidden; }
  /* line 198, view.scss */
  .news-grid .nw-card-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }
  /* line 210, view.scss */
  .news-grid .border-frame {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    z-index: 4;
    pointer-events: none;
    border: 40px solid transparent;
    border-image: url(/packages/theme_poons_london/themes/poons_london/css/images/frame-red-light_bg.png) 35% round; }
  /* line 220, view.scss */
  .news-grid .nw-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1; }
  /* line 226, view.scss */
  .news-grid .nw-card-date {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-block;
    align-self: flex-start;
    background: transparent;
    color: #e20613;
    border: 1px solid #e20613;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    margin-bottom: 12px; }
  /* line 238, view.scss */
  .news-grid .nw-card-title {
    color: #e20613;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px; }
  /* line 245, view.scss */
  .news-grid .nw-card-blurb {
    color: #e20613;
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0 0 12px;
    flex: 1; }
  /* line 254, view.scss */
  .news-grid .nw-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto; }
  /* line 260, view.scss */
  .news-grid .nw-tag {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.6rem;
    padding: 4px 9px;
    border-radius: 4px;
    background: #f3efd6;
    color: #e20613;
    letter-spacing: 0.05em; }
  /* line 271, view.scss */
  .news-grid .nw-loadmore-wrap {
    text-align: center;
    margin: 32px 0 0; }
  /* line 275, view.scss */
  .news-grid .nw-loadmore {
    font-family: "copperplate", serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: transparent;
    border: 1px solid #e20613;
    color: #e20613;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s; }
    /* line 286, view.scss */
    .news-grid .nw-loadmore:hover {
      background: #e20613;
      color: #f2f5d2; }
  /* line 293, view.scss */
  .news-grid .nw-empty {
    background: #f2f5d2;
    border: 1.5px solid #e20613;
    padding: 24px 20px;
    text-align: center;
    margin: 24px 0; }
    /* line 300, view.scss */
    .news-grid .nw-empty p {
      font-family: "copperplate", serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #e20613;
      margin: 0 0 12px; }
    /* line 302, view.scss */
    .news-grid .nw-empty .nw-empty-link {
      font-family: "copperplate", serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      background: none;
      border: 0;
      color: #e20613;
      text-decoration: underline;
      cursor: pointer;
      padding: 0; }
  @media (max-width: 992px) {
    /* line 318, view.scss */
    .news-grid .nw-layout {
      grid-template-columns: 1fr;
      gap: 28px; }
    /* line 322, view.scss */
    .news-grid .nw-filters {
      position: static;
      gap: 0;
      padding: 14px 18px; }
    /* line 327, view.scss */
    .news-grid .nw-filter-toggle {
      font-family: "copperplate", serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: transparent;
      border: none;
      color: #e20613;
      font-size: 0.95rem;
      padding: 6px 2px;
      cursor: pointer; }
      /* line 340, view.scss */
      .news-grid .nw-filter-toggle .chevron {
        transition: transform 0.3s ease;
        font-size: 0.78rem; }
    /* line 345, view.scss */
    .news-grid .nw-filters.nw-panel-open .nw-filter-toggle .chevron {
      transform: rotate(180deg); }
    /* line 348, view.scss */
    .news-grid .nw-filter-panel {
      grid-template-rows: 0fr; }
    /* line 351, view.scss */
    .news-grid .nw-filters.nw-panel-open .nw-filter-panel {
      grid-template-rows: 1fr; }
    /* line 354, view.scss */
    .news-grid .nw-filters.nw-panel-open .nw-filter-panel-inner {
      padding-top: 18px; } }
  @media (max-width: 640px) {
    /* line 359, view.scss */
    .news-grid .nw-grid {
      grid-template-columns: 1fr;
      gap: 22px; } }

/*# sourceMappingURL=view.css.map */
