/* V360 Workshops Page */

.v360-ws {
	padding: 5rem 0;
	background: #f8f9f9;
	color: #596E7A;
	font-family: "Source Sans Pro", Sans-serif;
}

.v360-ws__container {
	width: min(1100px, calc(100% - 40px));
	margin: 0 auto;
}

.v360-ws__header {
	display: grid;
	gap: 18px;
	margin-bottom: 22px;
	animation: v360FadeInUp 0.6s ease-out both;
}

.v360-ws__h1 {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 700;
	line-height: 1.15;
	color: #596E7A;
	letter-spacing: -0.01em;
    padding-bottom: 24px;
}

.v360-ws__notice {
	border: 2px solid rgba(255, 151, 72, 0.22);
	background: rgba(255, 151, 72, 0.08);
	padding: 0.95rem 1.1rem;
	border-radius: 1.25rem;
	font-size: 1rem;
	color: rgba(89, 110, 122, 0.95);
}

.v360-ws__notice a {
	color: #FF5A1F;
	font-weight: 700;
	text-decoration: underline;
}

.v360-ws__tabs {
	display: inline-flex;
	gap: 10px;
	padding: 8px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(255, 151, 72, 0.20);
	width: fit-content;
}

.v360-ws__tab {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.75rem 1.1rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	color: rgba(89,110,122,0.85) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.v360-ws__tab.is-active {
	background: rgba(255, 151, 72, 0.15) !important;
	color: #FF5A1F;
}

button.v360-ws__tab.is-active:focus {
    box-shadow: none !important;
}

.v360-ws__tab:hover {
	color: #fff !important;
	background-color: var(--e-global-color-3c0fc2f) !important;
}

.v360-ws__panel {
	display: none;
}

.v360-ws__panel.is-active {
	display: block;
	animation: v360FadeInUp 0.5s ease-out both;
}

.v360-ws__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.25rem;
}

.v360-ws__card {
	grid-column: span 12;
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 0;
	background: #ffffff;
	border-radius: 2rem;
	border: 2px solid rgba(255, 151, 72, 0.20);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.v360-ws__card:hover {
	transform: scale(1.01);
}

@media (max-width: 860px) {
	.v360-ws__card {
		grid-template-columns: 1fr;
	}
}

.v360-ws__thumb {
	display: block;
	background: rgba(255, 151, 72, 0.07);
}

.v360-ws__thumb-img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	display: block;
}

.v360-ws__thumb-fallback {
	min-height: 180px;
	background: linear-gradient(135deg, rgba(255,151,72,0.18), rgba(255,90,31,0.14));
}

.v360-ws__body {
	padding: 1.6rem 1.8rem 1.8rem;
	display: grid;
	gap: 0.85rem;
}

.v360-ws__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.v360-ws__date {
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(89,110,122,0.70);
}

.v360-ws__title {
	margin: 0;
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: #596E7A;
}

.v360-ws__title a {
	color: inherit;
	text-decoration: none;
}

.v360-ws__excerpt {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.55;
	color: rgba(89,110,122,0.85);
}

.v360-ws__actions {
	margin-top: 0.25rem;
}

.v360-ws__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.25rem;
	border-radius: 999px;
	border: 2px solid rgba(255, 151, 72, 0.25);
	background: rgba(255, 151, 72, 0.10);
	color: #FF5A1F;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

.v360-ws__btn:hover {
	background: rgba(255, 151, 72, 0.16);
	transform: scale(1.03);
}

.v360-ws__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
}

.v360-ws__badge--purchased {
	background: rgba(76, 175, 80, 0.14);
	border: 1.5px solid rgba(76, 175, 80, 0.35);
	color: #2e7d32;
}

.v360-ws__badge--buy {
	background: rgba(255, 151, 72, 0.15);
	border: 2px solid rgba(255, 151, 72, 0.25);
	color: #FF5A1F;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
}

.v360-ws__badge--buy:hover {
	background: rgba(255, 151, 72, 0.20);
	transform: translateY(-1px);
}

.v360-ws__badge--locked {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.v360-ws__badge--locked:hover {

}

.v360-lock-icon img {
	width: 16px;
	height: 16px;
	display: block;
}


.v360-ws__empty {
	border: 2px dashed rgba(255, 151, 72, 0.25);
	border-radius: 2rem;
	padding: 1.6rem 1.8rem;
	background: rgba(255, 151, 72, 0.07);
	color: rgba(89,110,122,0.85);
	font-size: 1.05rem;
	animation: v360FadeInUp 0.5s ease-out both;
}

/* Animation */
@keyframes v360FadeInUp {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
