/*
Theme Name: Kinkeep
Theme URI: https://local.kinkeep
Author: Kinkeep
Description: Headless CRM shell for the Kinkeep Vue SPA.
Version: 1.0.0
Text Domain: kinkeep
*/

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #1d2327;
	background: #f0f0f1;
}

.kk-site-header {
	background: #1d2327;
	color: #f0f0f1;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
}

.kk-site-header__inner {
	max-width: 48rem;
	margin: 0 auto;
	padding: 0.75rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
}

.kk-site-header__brand {
	font-weight: 650;
	font-size: 1.0625rem;
	color: #fff;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.kk-site-header__brand:hover,
.kk-site-header__brand:focus {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.kk-site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	align-items: center;
}

.kk-site-nav__link {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	color: #c3c4c7;
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
}

.kk-site-nav__link:hover,
.kk-site-nav__link:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.kk-site-nav__link.is-active {
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
}

.kk-main {
	min-height: calc(100vh - 3.5rem);
	box-sizing: border-box;
}

.kk-wrap {
	max-width: 40rem;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 3rem;
}

.kk-person-archive__header {
	margin-bottom: 1.25rem;
}

.kk-person-archive__title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 650;
}

.kk-custom-lists-index__intro {
	margin: 0.35rem 0 0;
	font-size: 0.9375rem;
	color: #50575e;
}

.kk-custom-lists-index__back {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
}

.kk-custom-lists-index__back a {
	color: #2271b1;
	text-decoration: none;
}

.kk-custom-lists-index__back a:hover {
	text-decoration: underline;
}

.kk-custom-lists-index__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.kk-custom-lists-index__link {
	display: block;
	padding: 1rem 1.15rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease;
}

.kk-custom-lists-index__link:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kk-custom-lists-index__name-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.kk-custom-lists-index__name {
	font-weight: 650;
	font-size: 1.0625rem;
	color: #1d2327;
	min-width: 0;
}

.kk-custom-lists-index__badge {
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #646970;
	background: #f0f0f1;
	padding: 0.15rem 0.45rem;
	border-radius: 4px;
}

.kk-custom-lists-index__badge--preset {
	background: #e7f5fe;
	color: #135e96;
}

.kk-custom-lists-index__desc {
	display: block;
	font-size: 0.875rem;
	color: #50575e;
	line-height: 1.45;
}

.kk-custom-list__description {
	margin: 0.35rem 0 0;
	font-size: 0.9375rem;
	color: #50575e;
	line-height: 1.45;
}

.kk-custom-list__nav {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
}

.kk-custom-list__nav a {
	color: #2271b1;
	text-decoration: none;
}

.kk-custom-list__nav a:hover {
	text-decoration: underline;
}

.kk-custom-list__nav-sep {
	color: #8c8f94;
	margin: 0 0.35rem;
}

.kk-person-filters {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kk-person-filters__search {
	margin-bottom: 1rem;
}

.kk-person-filters__search .kk-person-filters__input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.5rem 0.75rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 6px;
}

.kk-person-filters__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
	gap: 0.75rem 1rem;
	margin-bottom: 1rem;
}

.kk-person-filters__field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #50575e;
}

.kk-person-filters__select,
.kk-person-filters__input[type="date"] {
	width: 100%;
	box-sizing: border-box;
	padding: 0.4rem 0.5rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 4px;
}

.kk-person-filters__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.kk-person-filters__submit {
	font: inherit;
	cursor: pointer;
	padding: 0.45rem 1.25rem;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 500;
}

.kk-person-filters__submit:hover {
	background: #135e96;
}

.kk-person-filters__reset {
	color: #2271b1;
	text-decoration: none;
	font-size: 0.9375rem;
}

.kk-person-filters__reset:hover {
	text-decoration: underline;
}

.kk-tax-combobox {
	position: relative;
}

.kk-tax-combobox__inner {
	position: relative;
}

.kk-tax-combobox__input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.4rem 1.75rem 0.4rem 0.5rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	background: #fff;
}

.kk-tax-combobox__input:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}

.kk-tax-combobox__clear {
	position: absolute;
	right: 0.2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: none;
	background: transparent;
	color: #787c82;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
}

.kk-tax-combobox__clear:hover {
	color: #1d2327;
	background: rgba(0, 0, 0, 0.06);
}

.kk-tax-combobox__list {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 2px);
	z-index: 20;
	margin: 0;
	padding: 0.25rem 0;
	list-style: none;
	max-height: 12rem;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.kk-tax-combobox__option {
	padding: 0.35rem 0.65rem;
	cursor: pointer;
	font-size: 0.9375rem;
}

.kk-tax-combobox__option:hover,
.kk-tax-combobox__option.is-active {
	background: #f0f6fc;
	color: #1d2327;
}

.kk-person-add {
	margin-bottom: 1.5rem;
	padding: 1.25rem 1.25rem 1.5rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kk-person-add__title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	font-weight: 650;
}

.kk-person-add__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	gap: 0.75rem 1rem;
	margin-bottom: 0.75rem;
}

.kk-person-add__field label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #50575e;
}

.kk-person-add__field input[type="text"],
.kk-person-add__field input[type="date"],
.kk-person-add__field select {
	width: 100%;
	box-sizing: border-box;
	padding: 0.4rem 0.5rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 4px;
}

.kk-person-add__tax-rows {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.kk-person-add__tax-label {
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #50575e;
}

.kk-person-add__tax-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.kk-person-add__tax-search {
	flex: 0 0 9rem;
	max-width: 11rem;
	box-sizing: border-box;
	padding: 0.25rem 0.5rem;
	font: inherit;
	border-radius: 4px;
	border: 1px solid #d0d1d3;
	font-size: 0.8125rem;
}

.kk-person-add__tax-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 0.75rem;
}

.kk-person-add__tax-option {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
}

.kk-person-add__tax-new {
	margin-top: 0.35rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.kk-person-add__tax-new-input {
	min-width: 11rem;
	box-sizing: border-box;
	padding: 0.3rem 0.5rem;
	font: inherit;
	border-radius: 4px;
	border: 1px solid #c3c4c7;
}

.kk-person-add__tax-new-add {
	font: inherit;
	cursor: pointer;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	border: 1px solid #c3c4c7;
	background: #f6f7f7;
	font-size: 0.8125rem;
}

.kk-person-add__tax-new-add:hover {
	background: #e4e5e6;
}

.kk-person-add__tax-new-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.kk-person-add__tax-new-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	background: #f0f6fc;
	color: #1d2327;
	font-size: 0.8rem;
}

.kk-person-add__tax-new-tag-remove {
	border: none;
	background: transparent;
	color: #64748b;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1;
	padding: 0;
}

.kk-person-add__tax-new-tag-remove:hover {
	color: #1d2327;
}

.kk-person-add__actions {
	margin-top: 0.5rem;
}

.kk-person-add__submit {
	font: inherit;
	cursor: pointer;
	padding: 0.45rem 1.25rem;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 500;
}

.kk-person-add__submit:hover {
	background: #135e96;
}

.kk-add-person-page__header {
	margin-bottom: 1.25rem;
}

.kk-add-person-page__title {
	margin: 0 0 0.25rem;
	font-size: 1.75rem;
	font-weight: 650;
}

.kk-add-person-page__intro {
	margin: 0;
	font-size: 0.9375rem;
	color: #50575e;
}

.kk-person-add__section {
	margin-top: 1.25rem;
}

.kk-person-add__section-title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 600;
}

.kk-person-add-social__rows,
.kk-person-add-contact__rows {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 0.5rem;
}

.kk-person-add-social__row,
.kk-person-add-contact__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
	gap: 0.4rem 0.75rem;
	align-items: flex-end;
}

.kk-person-add-social__row label span,
.kk-person-add-contact__row label span {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	margin-bottom: 0.15rem;
	color: #50575e;
}

.kk-person-add-social__row input[type="text"],
.kk-person-add-social__row select,
.kk-person-add-contact__row input[type="text"],
.kk-person-add-contact__row select {
	width: 100%;
	box-sizing: border-box;
	padding: 0.35rem 0.5rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 4px;
}

.kk-person-add-row-remove {
	justify-self: flex-start;
	font-size: 1.25rem;
	line-height: 1;
	border: none;
	background: transparent;
	color: #787c82;
	cursor: pointer;
	padding: 0 0.25rem;
}

.kk-person-add-row-remove:hover {
	color: #1d2327;
}

.kk-person-add-social__add,
.kk-person-add-contact__add {
	font: inherit;
	cursor: pointer;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	border: 1px solid #c3c4c7;
	background: #f6f7f7;
	color: #1d2327;
	font-size: 0.875rem;
}

.kk-person-add-social__add:hover,
.kk-person-add-contact__add:hover {
	background: #e4e5e6;
}

.kk-person-add__actions--page {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.kk-person-add__cancel {
	color: #2271b1;
	text-decoration: none;
	font-size: 0.9375rem;
}

.kk-person-add__cancel:hover {
	text-decoration: underline;
}

.kk-person-archive__add-link {
	margin: 0 0 1rem;
}

.kk-person-archive__add-button {
	display: inline-block;
	padding: 0.45rem 1.1rem;
	border-radius: 999px;
	background: #2271b1;
	color: #fff;
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
}

.kk-person-archive__add-button:hover {
	background: #135e96;
}

.kk-person-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.kk-person-list__item {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.kk-person-list__row {
	display: flex;
	align-items: stretch;
	min-width: 0;
}

.kk-person-list__item--has-action .kk-person-list__link {
	flex: 1;
	min-width: 0;
	border-radius: 8px 0 0 8px;
}

.kk-person-list__add-to-list {
	flex-shrink: 0;
	width: 2.75rem;
	align-self: stretch;
	margin: 0;
	padding: 0;
	border: none;
	background: #fff;
	color: #1d2327;
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	border-radius: 0 8px 8px 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.kk-person-list__add-to-list:hover,
.kk-person-list__add-to-list:focus-visible {
	background: #2271b1;
	color: #fff;
}

.kk-person-list__link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	text-decoration: none;
	color: inherit;
	border-radius: 8px;
}

.kk-person-list__link:hover {
	background: #f6f7f7;
}

.kk-person-list__thumb {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	background: #e0e0e0;
}

.kk-person-list__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-person-list__body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.kk-person-list__name {
	font-weight: 600;
}

.kk-person-list__excerpt {
	font-size: 0.875rem;
	color: #646970;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kk-empty {
	margin: 0;
	color: #646970;
}

.kk-dialog {
	box-sizing: border-box;
	border: none;
	border-radius: 12px;
	padding: 0;
	width: min(40rem, calc(100vw - 2rem));
	max-width: calc(100vw - 2rem);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}

.kk-dialog::backdrop {
	background: rgba(0, 0, 0, 0.45);
}

.kk-dialog__inner {
	padding: 1.25rem 1.35rem 1.35rem;
}

.kk-dialog__title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 650;
}

.kk-dialog__field {
	margin: 0 0 0.85rem;
}

.kk-dialog__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: #50575e;
}

.kk-dialog__select,
.kk-dialog__input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.45rem 0.55rem;
	font: inherit;
	border: 1px solid #8c8f94;
	border-radius: 6px;
}

.kk-dialog__actions {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.kk-dialog__actions--split {
	justify-content: space-between;
	align-items: center;
}

.kk-dialog__btn {
	font: inherit;
	cursor: pointer;
	padding: 0.45rem 1rem;
	border-radius: 6px;
	border: 1px solid #c3c4c7;
	background: #f6f7f7;
	color: #1d2327;
}

.kk-dialog__btn--primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.kk-dialog__btn--primary:hover {
	background: #135e96;
	border-color: #135e96;
}

.kk-dialog__sep {
	border: none;
	border-top: 1px solid #dcdcde;
	margin: 1rem 0;
}

.navigation.pagination {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination span {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	background: #fff;
	border-radius: 4px;
	text-decoration: none;
	color: #2271b1;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.navigation.pagination span.current {
	font-weight: 600;
	color: #1d2327;
}

.kk-person-single .kk-person {
	background: #fff;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kk-person__header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.kk-person__photo img {
	display: block;
	border-radius: 8px;
	max-width: 120px;
	height: auto;
}

.kk-person__titlewrap {
	flex: 1;
	min-width: 0;
}

.kk-person__title {
	margin: 0 0 0.35rem;
	font-size: 1.5rem;
	line-height: 1.2;
}

.kk-person__status {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.kk-person__status--active {
	color: #1e4620;
}

.kk-person__status--inactive {
	color: #646970;
}

.kk-person__excerpt {
	margin: 0 0 1rem;
	color: #50575e;
	font-size: 0.95rem;
}

.kk-person__socials {
	margin: 0 0 1.25rem;
}

.kk-person__socials-title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 650;
}

.kk-person__socials-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.kk-person__social-link {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.5rem;
	text-decoration: none;
	color: #2271b1;
	font-size: 0.9375rem;
}

.kk-person__social-link:hover {
	text-decoration: underline;
}

.kk-person__social-platform {
	font-weight: 600;
	color: #1d2327;
}

.kk-person__social-display {
	color: #50575e;
	word-break: break-word;
}

.kk-person__meta {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 0.35rem 1rem;
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
}

.kk-person__meta dt {
	margin: 0;
	color: #646970;
	font-weight: 500;
}

.kk-person__meta dd {
	margin: 0;
}

.kk-person__related,
.kk-person__interactions {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid #dcdcde;
}

.kk-person__related h2,
.kk-person__interactions h2 {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.kk-person__related-list {
	margin: 0;
	padding-left: 1.25rem;
}

.kk-person__related-list a {
	color: #2271b1;
}

.kk-person__interactions-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kk-notice {
	margin: 0 0 1rem;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	font-size: 0.9375rem;
}

.kk-notice--success {
	background: #d5f5e3;
	color: #1e4620;
}

.kk-notice--warn {
	background: #fcf9e8;
	color: #614200;
}

.kk-notice--error {
	background: #fcf0f1;
	color: #6b1c1f;
}

.kk-interaction-form {
	margin-bottom: 1.25rem;
	padding: 1rem;
	background: #f6f7f7;
	border-radius: 8px;
	border: 1px solid #dcdcde;
}

.kk-interaction-form__label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 0.9375rem;
}

.kk-interaction-form__field {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.5rem 0.65rem;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	font: inherit;
	resize: vertical;
}

.kk-interaction-form__field:focus {
	border-color: #2271b1;
	outline: 1px solid #2271b1;
}

.kk-interaction-form__hint {
	margin: 0.35rem 0 0.75rem;
	font-size: 0.8125rem;
	color: #646970;
}

.kk-interaction-form__submit {
	font: inherit;
	cursor: pointer;
	padding: 0.45rem 1rem;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-weight: 500;
}

.kk-interaction-form__submit:hover {
	background: #135e96;
}

.kk-interaction-form__field-wrap {
	position: relative;
}

.kk-mention-dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 100;
	margin: 4px 0 0;
	padding: 0.25rem 0;
	list-style: none;
	max-height: 220px;
	overflow: auto;
	background: #fff;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.kk-mention-dropdown__item {
	padding: 0.4rem 0.75rem;
	cursor: pointer;
	font-size: 0.9375rem;
}

.kk-mention-dropdown__item:hover,
.kk-mention-dropdown__item.is-active {
	background: #2271b1;
	color: #fff;
}

.kk-interaction-card__body .kk-person-mention {
	color: #2271b1;
	font-weight: 500;
	text-decoration: none;
}

.kk-interaction-card__body .kk-person-mention:hover {
	text-decoration: underline;
}

.kk-interaction-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-top: 0.65rem;
	padding-top: 0.65rem;
	border-top: 1px solid #e0e0e0;
}

.kk-interaction-card__delete-form {
	display: inline;
	margin: 0;
}

.kk-interaction-card__btn {
	font: inherit;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	border: 1px solid #c3c4c7;
	background: #fff;
	color: #1d2327;
	font-size: 0.8125rem;
}

.kk-interaction-card__btn:hover {
	background: #f6f7f7;
}

.kk-interaction-card__btn-delete {
	border-color: #dba617;
	color: #8a4b00;
}

.kk-interaction-card__btn-delete:hover {
	background: #fcf9e8;
}

.kk-interaction-card__edit {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px dashed #c3c4c7;
}

.kk-interaction-card__edit .kk-interaction-form__field-wrap {
	margin-bottom: 0.5rem;
}

.kk-interaction-card__edit-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.kk-person__interactions-empty {
	margin: 0;
	font-size: 0.9375rem;
	color: #646970;
}

.kk-interaction-card {
	background: #f6f7f7;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	border: 1px solid #e0e0e0;
}

.kk-interaction-card__time {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #50575e;
	margin-bottom: 0.5rem;
}

.kk-interaction-card__body {
	font-size: 0.9375rem;
	color: #1d2327;
	line-height: 1.45;
}
