.note {
	background-color: #eee9e5;
	border: 3px solid #dbdbdb;
	margin: 10px 0;
	padding: 20px;
	position: relative;
	display: flex;
	gap: 15px;
	justify-content: space-between;
	font-family: Lora, serif;
	width: 100%;
}

.note:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    border-width: 0px 24px 24px 0;
    border-style: solid;
    border-color: #F6F5F0 #F6F5F0 #dbdbdb #000;
    background: #f6f5f0;
    display: block;
    width: 0;
    transform: rotate(-90deg);
}

.note .icon {
	font-size: 60px;
  width: 127px;
  text-align: center;
}

.note .txt {
	width: 100%;
}

.note .txt h2 {
	font-weight: normal;
	line-height: normal;
	font-size: clamp(1.25rem, 1.1055rem + 0.6163vw, 1.5rem);
	margin-bottom: 10px;
}

.note .arrow {
	text-align: right;
	align-content: center;
	padding-right: 10px;
}

.note .arrow .arrow__head {
	transform: translateX(30px);
}
