/* gas-prices.css — IndiaRealTime Gas Prices (CNG/PNG/LPG/Auto Gas)
   Page shell (header, footer, .wrap/.ir-wrap, .pghead, .ir-bc, fonts,
   colors) comes from the theme's own ir-tokens.css/ir-home-v2.css/ir-home.css,
   loaded before this file. Classes below are deliberately self-contained
   (not shared with the fuel-prices or currency-converter plugins' own
   stylesheets) so this plugin has no cross-plugin CSS dependency, even
   though some class names/look intentionally match those plugins' cards
   for visual consistency across the site. */

.irg-type-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
}

.irg-type-card {
	display: block;
	background: var(--wh, #fff);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 24px 20px;
	text-align: center;
	box-shadow: var(--sh, 0 1px 4px rgba(0,0,0,.06));
	text-decoration: none;
	transition: box-shadow .2s, transform .2s;
}

.irg-type-card:hover {
	box-shadow: var(--sh-h, 0 12px 36px rgba(0,0,0,.16));
	transform: translateY(-2px);
}

.irg-type-icon {
	font-size: 2em;
	margin-bottom: 6px;
}

.irg-type-label {
	font-size: 18px;
	font-weight: 700;
	color: var(--tx, #1A1C22);
}

.irg-type-full {
	font-size: 12.5px;
	color: var(--mt, #5B5650);
	margin-top: 4px;
}

.irg-type-unit {
	font-size: 11px;
	color: var(--mt, #5B5650);
	margin-top: 2px;
}

.irg-type-count {
	margin-top: 10px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bl, #FF6200);
}

.irg-city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}

.irg-city-card {
	display: block;
	background: var(--wh, #fff);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 16px 18px;
	box-shadow: var(--sh, 0 1px 4px rgba(0,0,0,.06));
	text-decoration: none;
	transition: box-shadow .2s, transform .2s;
}

.irg-city-card:hover {
	box-shadow: var(--sh-h, 0 12px 36px rgba(0,0,0,.16));
	transform: translateY(-2px);
}

.irg-city-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--tx, #1A1C22);
}

.irg-city-state {
	font-size: 12px;
	color: var(--mt, #5B5650);
	margin-top: 2px;
}

.irg-city-value {
	margin-top: 10px;
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
	font-size: 16px;
	font-weight: 700;
	color: var(--tx, #1A1C22);
	border-top: 1px solid var(--bd, #E5E3DC);
	padding-top: 8px;
}

.irg-city-value span {
	font-size: 11px;
	font-weight: 500;
	color: var(--mt, #5B5650);
	font-family: inherit;
}

/* Single-city detail page price card - self-contained equivalent of the
   fuel-prices plugin's .irf-price-* classes (same look, no shared CSS). */
.irf-price-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 16px;
}

.irf-price-card {
	background: var(--wh, #fff);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 22px 20px;
	text-align: center;
	box-shadow: var(--sh, 0 1px 4px rgba(0,0,0,.06));
}

.irf-price-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--mt, #5B5650);
	margin-bottom: 8px;
}

.irf-price-value {
	font-size: 2em;
	font-weight: 700;
	color: var(--tx, #1A1C22);
	font-family: var(--font-mono);
	font-variant-numeric: tabular-nums;
}

.irf-price-unit {
	font-size: 12px;
	color: var(--mt, #5B5650);
	margin-top: 4px;
}

.irf-note {
	font-size: 13px;
	color: var(--mt, #5B5650);
	background: var(--bg, #F4F3EF);
	border: 1px solid var(--bd, #E5E3DC);
	border-radius: var(--r, 12px);
	padding: 10px 14px;
	margin-bottom: 28px;
}

.irt-cc-about p {
	line-height: 1.7;
	color: var(--mt, #5B5650);
}
