/* Default: pill button + small card with title, size, optional description. */

.fled.is-style-default {
	display: inline-flex;
	flex-direction: column;
	gap: 0.5em;
	padding: 0.85em 1em;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	background: #fafafa;
	max-width: 28em;
	margin: 0.5em 0;
}

.fled.is-style-default .fled__body {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
}

.fled.is-style-default .fled__title {
	font-weight: 600;
	font-size: 1.02em;
}

.fled.is-style-default .fled__size {
	font-size: 0.85em;
	color: #555;
}

.fled.is-style-default .fled__count {
	font-size: 0.8em;
	color: #777;
}

.fled.is-style-default .fled__desc {
	font-size: 0.92em;
	color: #444;
}

.fled.is-style-default .fled__desc p {
	margin: 0.25em 0;
}

.fled.is-style-default .fled__button {
	margin-top: 0.4em;
	padding: 0.55em 1em;
	background: #2271b1;
	color: #fff;
	border-radius: 4px;
	align-self: flex-start;
	font-weight: 500;
	transition: background-color 0.15s ease;
}

.fled.is-style-default .fled__button:hover,
.fled.is-style-default .fled__button:focus {
	background: #135e96;
	color: #fff;
}

/* Bundle in default variation: full card with header, list and ZIP button. */
.fled--bundle.is-style-default {
	display: block;
	padding: 1em 1.25em;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	background: #fafafa;
	max-width: none;
	margin: 0.5em 0;
}

.fled--bundle.is-style-default .fled-bundle__items {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
}

.fled--bundle.is-style-default .fled-bundle__item-link {
	padding: 0.55em 0.85em;
}

.fled--bundle.is-style-default .fled-bundle__zip {
	background: #2271b1;
	color: #fff;
	padding: 0.55em 1em;
	border-radius: 4px;
	transition: background-color 0.15s ease;
}

.fled--bundle.is-style-default .fled-bundle__zip:hover,
.fled--bundle.is-style-default .fled-bundle__zip:focus {
	background: #135e96;
	color: #fff;
}
