/* ==========================================================================
   Pelagi Olfactory Notes — Frontend Styles
   ========================================================================== */

.pon-section {
	width: 100%;
	padding: 60px 20px;
	background-color: #f7f7f5;
	box-sizing: border-box;
	margin-top: 40px;
}

/* Title */
.pon-section__title {
	text-align: center;
	font-family: 'Cormorant Garamond', sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: inherit;
	margin: 0 0 48px;
}

/* Grid */
.pon-section__grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

/* Column */
.pon-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	min-width: 180px;
}

.pon-column__label {
	font-size: 22px;
	font-weight: 600;
	font-family: 'Cormorant Garamond', sans-serif;
	letter-spacing: 0.05em;
	color: #888;
	text-align: center;
}

/* Featured note */
.pon-featured-note {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.pon-featured-note__img-wrap {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-color: #ebebeb;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pon-featured-note__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pon-featured-note__name {
	font-size: 24px;
	font-weight: 500;
	color: #1a1a1a;
	text-align: center;
	letter-spacing: 0.02em;
}

/* Tags */
.pon-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.pon-tag {
	display: inline-block;
	padding: 5px 14px;
	border: 1px solid #d8d8d8;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #444;
	background: #fff;
	white-space: nowrap;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

a.pon-tag:hover,
a.pon-tag:focus {
	border-color: #1a1a1a;
	color: #1a1a1a;
	background-color: #f0f0f0;
	text-decoration: none;
	outline: none;
}

/* Responsive */
@media ( max-width: 600px ) {
	.pon-section__grid {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.pon-section {
		padding: 40px 16px;
	}
}
