/**
 * assets/css/oga-nos-promote.css — Promote layer (TripAdvisor-clean).
 * Frames under the header · light OGA brand.
 * @since 2026-07-29
 */

.oga-pr {
	--pr-navy:#001D6C; --pr-red:#b01c2e; --pr-gold:#EAB308; --pr-green:#0a7d2c;
	width:100%;
	background:#ffffff;
	border-bottom:1px solid #e9edf4;
	box-shadow:0 1px 0 rgba(0,29,108,.03);
}
.oga-pr-inner { max-width:1200px; margin:0 auto; padding:20px clamp(16px,4vw,28px) 24px; }

/* Header */
.oga-pr-head { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:16px; }
.oga-pr-eyebrow { margin:0 0 4px; font-family:ui-monospace,Menlo,Consolas,monospace; font-size:11px; color:var(--pr-navy); }
.oga-pr-title { margin:0 0 4px; font-size:clamp(20px,3vw,26px); font-weight:800; color:var(--pr-navy); }
.oga-pr-sub { margin:0; font-size:13px; color:#55617a; max-width:70ch; }
.oga-pr-adlabel { flex:0 0 auto; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#8894ac; border:1px solid #e3e8f2; padding:3px 9px; border-radius:999px; }

/* Category tiles */
.oga-pr-tiles { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; margin-bottom:20px; }
@media (max-width:860px){ .oga-pr-tiles { grid-template-columns:repeat(3,1fr); } }
@media (max-width:460px){ .oga-pr-tiles { grid-template-columns:repeat(2,1fr); } }
.oga-pr-tile { display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; padding:10px 6px; border-radius:12px; transition:background .14s ease; }
.oga-pr-tile:hover { background:#f6f8fc; }
.oga-pr-tile-ic { width:56px; height:56px; border-radius:16px; display:grid; place-items:center; font-size:26px; color:#fff; box-shadow:0 6px 16px rgba(0,29,108,.14); }
.oga-pr-tile-nm { font-size:12.5px; font-weight:700; color:var(--pr-navy); text-align:center; }

/* Promoted cards */
.oga-pr-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:16px; }
.oga-pr-card { background:#fff; border:1px solid #eef1f6; border-radius:14px; overflow:hidden; transition:transform .15s ease, box-shadow .15s ease; }
.oga-pr-card:hover { transform:translateY(-3px); box-shadow:0 14px 34px rgba(0,29,108,.12); }
.oga-pr-photo { position:relative; aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; }
.oga-pr-hero { font-size:46px; filter:drop-shadow(0 5px 12px rgba(0,0,0,.28)); }
.oga-pr-tag { position:absolute; top:9px; left:9px; font-size:10px; font-weight:700; letter-spacing:.03em; text-transform:uppercase; color:var(--pr-navy); background:rgba(255,255,255,.94); padding:3px 9px; border-radius:999px; box-shadow:0 2px 8px rgba(0,0,0,.14); }
.oga-pr-body { padding:12px 13px 14px; }
.oga-pr-name { margin:0 0 5px; font-size:14.5px; font-weight:700; line-height:1.3; color:var(--pr-navy); }

/* Green bubble rating (TripAdvisor) */
.oga-pr-rating { display:inline-flex; align-items:center; gap:5px; font-size:12px; color:#14181f; }
.oga-pr-dots { display:inline-flex; gap:2px; }
.oga-pr-dot { width:11px; height:11px; border-radius:50%; background:#e2e6ee; display:inline-block; }
.oga-pr-dot.is-full { background:var(--pr-green); }
.oga-pr-dot.is-half { background:linear-gradient(90deg,var(--pr-green) 50%,#e2e6ee 50%); }
.oga-pr-rating b { font-weight:800; }
.oga-pr-rev { color:#8894ac; }
.oga-pr-area { margin:6px 0 0; font-size:12px; color:#667; }

@media (prefers-reduced-motion: reduce){ .oga-pr-card,.oga-pr-tile { transition:none; } .oga-pr-card:hover { transform:none; } }
