.company-hero {
	background-color: #05324E;
	padding-top: 100px;
	padding-bottom: 100px;
}

.company-hero__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 64px;
}

.company-hero__main {
	display: flex;
	align-items: flex-start;
	gap: 64px;
}

.company-hero__rank {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	width: 134px;
}

.company-hero__rank-value {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #0072FF;
	color: #FFFFFF;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.1;
}

.company-hero__rank-label {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	opacity: 0.8;
}

.company-hero__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 743px;
}

.company-hero__intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.company-hero__badges {
	display: flex;
	align-items: center;
	gap: 16px;
}

.company-hero__badge {
	padding: 8px 24px;
	border: 1px solid #FFD367;
	border-radius: 32px;
	background-color: rgba(255, 211, 103, 0.1);
	color: #FFD367;
	font-size: 16px;
	line-height: 1.4;
}

.company-hero__title {
	margin: 0;
	color: #FFFFFF;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
}

.company-hero__address {
	margin: 0;
	color: #FFFFFF;
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.8;
}

.company-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.company-hero__website {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 16px;
	border: 1px solid #FFFFFF;
	border-radius: 120px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.company-hero__website:hover,
.company-hero__website:focus-visible {
	background-color: #FFFFFF;
	color: #05324E;
}

.company-hero__trending {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.company-hero__trending-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
}

.company-hero__trending-text {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 1.8;
}

.company-hero__tooltip {
	position: relative;
	display: inline-flex;
	margin-left: 2px;
}

.company-hero__tooltip-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: none;
	color: #FFFFFF;
	cursor: pointer;
	opacity: 0.8;
}

.company-hero__tooltip-toggle:hover,
.company-hero__tooltip-toggle:focus-visible {
	opacity: 1;
}

.company-hero__tooltip-body {
	position: absolute;
	left: calc(100% + 16px);
	top: 50%;
	z-index: 2;
	width: max-content;
	max-width: 260px;
	padding: 8px 12px;
	border-radius: 8px;
	background-color: #FFFFFF;
	color: #031527;
	font-size: 16px;
	line-height: 1.4;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.company-hero__tooltip-body::before {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	border: 8px solid transparent;
	border-right-color: #FFFFFF;
	transform: translateY(-50%);
}

.company-hero__tooltip-toggle:hover + .company-hero__tooltip-body,
.company-hero__tooltip-toggle:focus-visible + .company-hero__tooltip-body {
	opacity: 1;
	visibility: visible;
}

.company-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex-shrink: 0;
	min-width: 206px;
}

.company-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-radius: 120px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.company-hero__button--primary {
	gap: 24px;
	padding: 4px 4px 4px 16px;
	background-color: #0072FF;
}

.company-hero__button--primary:hover,
.company-hero__button--primary:focus-visible {
	background-color: #0061D9;
}

.company-hero__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFFFFF;
}

.company-hero__button--secondary {
	padding: 16px;
	border: 1px solid #FFFFFF;
}

.company-hero__button--secondary:hover,
.company-hero__button--secondary:focus-visible {
	background-color: #FFFFFF;
	color: #05324E;
}

@media (max-width: 1024px) {
	.company-hero__inner {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 767px) {
	.company-hero {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.company-hero__inner {
		gap: 20px;
	}

	.company-hero__main {
		flex-direction: column;
		gap: 32px;
	}

	.company-hero__rank {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		width: auto;
	}

	.company-hero__rank-value {
		width: 64px;
		height: 64px;
		font-size: 24px;
	}

	.company-hero__rank-label {
		text-align: left;
	}

	.company-hero__title {
		font-size: 32px;
	}

	.company-hero__tooltip-body {
		left: auto;
		right: 0;
		top: calc(100% + 12px);
		transform: none;
		max-width: min(260px, calc(100vw - 48px));
	}

	.company-hero__tooltip-body::before {
		right: 4px;
		top: auto;
		bottom: 100%;
		border-right-color: transparent;
		border-bottom-color: #FFFFFF;
		transform: none;
	}
}
