:root{
  --bw-press-bg:#fff;
  --bw-press-text:#111;
  --bw-press-muted:#7a7a7a;
  --bw-press-accent:#ff5100; /* change to your brand */
  --bw-press-border:rgba(0,0,0,.08);
  --bw-press-shadow:0 10px 30px rgba(0,0,0,.12);
  --bw-press-radius:14px;
  --bw-press-gap:22px;
}

.bw-press{background:#f6f6f6;color:var(--bw-press-text);}
.bw-press__container{max-width:1320px;margin:0 auto;padding:28px 16px;}

.bw-press__header{display:flex;gap:20px;align-items:flex-end;flex-wrap:wrap;margin-bottom:24px;}
.bw-press__title{font-size:34px;line-height:1.15;margin:0 0 6px 0;text-transform:uppercase;letter-spacing:.5px;}
.bw-press__filters{margin-left:auto;display:flex;gap:12px;align-items:center;}
.bw-press__select select{
  appearance:none;border:1px solid var(--bw-press-border);background:var(--bw-press-bg);
  border-radius:10px;padding:10px 12px;min-width:190px;box-shadow:none;
}

.bw-press__featured{background:var(--bw-press-bg);border-radius:var(--bw-press-radius);box-shadow:var(--bw-press-shadow);padding:16px;margin-bottom:28px;}
.bw-press__featured-label{display:inline-block;font-size:12px;font-weight:700;color:var(--bw-press-accent);text-transform:uppercase;margin-bottom:4px;}
.bw-press__featured-meta{display:flex;gap:14px;align-items:center;margin:0 0 10px 0;}
.bw-press__date{font-size:13px;color:var(--bw-press-muted);}

/* IMAGE on RIGHT: body first, image second */
.bw-press__featured-card{
  display:grid; grid-template-columns: 1fr 1.25fr; gap:18px; align-items:stretch;
}
.bw-press__featured-body{ order:1; }
.bw-press__featured-media{ order:2; }
.bw-press__featured-media img{width:100%;height:100%;object-fit:cover;border-radius:10px;}
.bw-press__thumb--fallback{background:#ddd;border-radius:10px;width:100%;padding-top:56%;}

.bw-press__featured-title{margin:4px 0 8px 0;font-size:28px;line-height:1.2;}
.bw-press__featured-excerpt{color:#333;margin:0 0 10px 0;}
.bw-press__readmore{display:inline-block;background:var(--bw-press-accent);color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700;}
.bw-press__readmore:hover{opacity:.9}

.bw-press__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--bw-press-gap); }
@media (max-width:1024px){ .bw-press__featured-card{grid-template-columns:1fr} .bw-press__grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .bw-press__grid{grid-template-columns:1fr;} }

.bw-press__card{background:var(--bw-press-bg);border-radius:var(--bw-press-radius);box-shadow:var(--bw-press-shadow);overflow:hidden;display:flex;flex-direction:column;}
.bw-press__media img{width:100%;height:auto;display:block;}
.bw-press__meta{display:flex;justify-content:space-between;align-items:center;padding:10px 14px;border-bottom:1px solid var(--bw-press-border);}
.bw-press__badge{display:inline-block;background:var(--bw-press-accent);color:#fff;font-size:12px;font-weight:700;border-radius:999px;padding:4px 10px;text-transform:uppercase;}
.bw-press__card-title{font-size:18px;line-height:1.25;padding:12px 14px;margin:0;}
.bw-press__excerpt{color:#333;padding:0 14px 14px 14px;margin:0;flex:1;}
.bw-press__card .bw-press__readmore{margin:0 14px 14px 14px;}

.bw-press__pagination{display:flex;justify-content:center;gap:8px;margin:28px 0 8px 0;}
.bw-press__pagination .page-numbers{
  display:inline-block;background:#fff;border:1px solid var(--bw-press-border);border-radius:10px;
  padding:8px 12px;text-decoration:none;color:#333;
}
.bw-press__pagination .current{background:var(--bw-press-accent);color:#fff;border-color:var(--bw-press-accent);}

/* Loading state */
#bwpo-results.is-loading{opacity:.5;pointer-events:none;filter:grayscale(20%);transition:opacity .15s ease;}

/* --- Featured title size --- */
.bw-press__featured-title {
  font-size: 50px;     /* requested */
  line-height: 1.05;
  margin: 4px 0 8px 0;
}

/* --- Featured layout (image on the right, matched height) --- */
:root {
  /* Change to 0.70 for 70% if you prefer */
  --bwpo-featured-media-width: 0.80; /* 80% of the right column */
}

/* Two-column featured card; items stretch so heights match */
.bw-press__featured-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr; /* text | image column */
  gap: 18px;
  align-items: stretch;             /* make both columns same height */
}

.bw-press__featured-body  { order: 1; }
.bw-press__featured-media { 
  order: 2;
  display: block;
  width: calc(var(--bwpo-featured-media-width) * 100%); /* 80% (or 70%) */
  height: 100%;               /* match left column height */
  margin-left: auto;          /* keep it tight to the right edge */
}

/* Image fills the anchor box and crops nicely */
.bw-press__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Mobile/tablet fallbacks */
@media (max-width: 1024px) {
  .bw-press__featured-card { grid-template-columns: 1fr; }
  .bw-press__featured-media {
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  .bw-press__featured-media img { height: auto; }
  .bw-press__featured-title { font-size: 34px; } /* comfortable on smaller screens */
}

h2.bw-press__featured-title a {
    text-decoration: none;
    font-weight: 700;
    color: #000;
}

h3.bw-press__card-title a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.bw-press__featured-meta span {
    font-size: 15px;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
}