
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700&display=swap');


.cybsa-accordion {
	width: 100%;
	max-width: 100%;
	margin: 0;
	font-family: 'Libre Baskerville', serif;
	overflow: visible;
}

.cybsa-row {
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: transparent;
	padding: 0 20px;
	cursor: pointer;
	overflow: visible;
	z-index: 1;
	transition: background-color 0.4s ease;
}

.cybsa-row:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cybsa-row:hover,
.cybsa-row:focus-within,
.cybsa-row.cybsa-active {
	background-color: #ffffff;
	z-index: 5;
}

.cybsa-row-top {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 30px 0;
}

.cybsa-left {
	min-width: 0;
}

.cybsa-icon-slot {
	height: 0;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-8px) scale(0.7);
	transform-origin: left center;
	transition: opacity 0.28s ease,
		transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
		visibility 0s linear 0.28s,
		height 0.28s ease,
		margin-bottom 0.28s ease;
}

.cybsa-row:hover .cybsa-icon-slot {
	height: 40px;
	margin-bottom: 4px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0) scale(1);
}
.cybsa-icon {
	color: #C78550;
	display: block;
	transform: scale(0.9);
	transform-origin: left center;
	transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cybsa-row:hover .cybsa-icon-slot,
.cybsa-row:focus-within .cybsa-icon-slot,
.cybsa-row.cybsa-active .cybsa-icon-slot {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0) scale(1);
}

.cybsa-row:hover .cybsa-icon,
.cybsa-row:focus-within .cybsa-icon,
.cybsa-row.cybsa-active .cybsa-icon {
	transform: scale(1);
}

.cybsa-num-title {
	display: flex;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
}

.cybsa-number {
	font-size: 40px;
	font-weight: 600;
	color: #C78550;
}

.cybsa-title {
	font-size: 36px;
	font-weight: 600;
	color: #242625;
}

.cybsa-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #C78550;
	color: #ffffff;
	flex-shrink: 0;
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.cybsa-row:hover .cybsa-arrow,
.cybsa-row:focus-within .cybsa-arrow,
.cybsa-row.cybsa-active .cybsa-arrow {
	opacity: 0;
	transform: scale(0.5);
}

.cybsa-expand {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.cybsa-row:hover .cybsa-expand,
.cybsa-row:focus-within .cybsa-expand,
.cybsa-row.cybsa-active .cybsa-expand {
	grid-template-rows: 1fr;
}

.cybsa-expand-inner {
	overflow: hidden;
}

.cybsa-expand-content {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 24px;
	align-items: center;
	padding-bottom: 24px;
}

.cybsa-description {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	max-width:70%;
	color: #6b6b6b;
	opacity: 0;
	transition: opacity 0.5s ease 0.15s;
	margin-left:65px;
	font-family: 'Mulish', sans-serif;
}

.cybsa-row:hover .cybsa-description,
.cybsa-row:focus-within .cybsa-description,
.cybsa-row.cybsa-active .cybsa-description {
	opacity: 1;
}

.cybsa-image-wrap {
    position: absolute;
    right: 20px;
    top: 0;
    width: 350px;
    height: 230px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform-origin: center;
    transform: rotate(-4deg) scale(0.7);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    transition: opacity 0.4s ease 0.1s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.cybsa-row:hover .cybsa-image-wrap,
.cybsa-row:focus-within .cybsa-image-wrap,
.cybsa-row.cybsa-active .cybsa-image-wrap {
	opacity: 1;
	transform: rotate(var(--cybsa-hover-rotate, -13deg)) scale(1);
}

.cybsa-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 700px) {
	.cybsa-row {
		padding: 20px 16px;
	}

	.cybsa-row-top {
		padding: 18px 0;
	}

	.cybsa-expand-content {
		grid-template-columns: 1fr;
	}

	.cybsa-number {
    font-size: 26px;
}
.cybsa-title {
    font-size: 22px;
}
.cybsa-arrow {
    width: 35px;
    height: 35px;
}

.cybsa-row:hover .cybsa-image-wrap, .cybsa-row:focus-within .cybsa-image-wrap, .cybsa-row.cybsa-active .cybsa-image-wrap {
    opacity: 1;
    position: relative;
    transform: none;
    left: 0;
    right: 0;
    height: 200px;
    width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
	.cybsa-row,
	.cybsa-icon-slot,
	.cybsa-icon,
	.cybsa-arrow,
	.cybsa-expand,
	.cybsa-description,
	.cybsa-image-wrap {
		transition: none;
	}
}
