/* Start Navigation */
:root {
    --brand: #EF6C00;
    /* orange */
    --panel-beige: #F6F2EA;
    /* light beige bg */
    --panel-pink: #FFF1EC;
    /* light pink bg */
    --panel-border: #F6E7DB;
    /* soft border */
    --radius: 8px;
    --paddingY: 14px;
    --paddingX: 16px;
    --text: #2A2A2A;
    --muted: #777;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #F8F7F4;
    line-height: 1.5;
}

/* End Navigation */

/* Start Breadcrumb */
.breadcrumb__container {
    padding-top: 24px;
    padding-bottom: 40px;
}

.breadcrumb__nav {
    max-width: 1720px;
    margin: 0 5.2%;
    display: flex;
    column-gap: 4px;
    align-items: center;
}

.breadcrumb__separator {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.breadcrumb__link {
    font-size: 16px;
    font-weight: 500;
    color: #828282;
}

.breadcrumb__current {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
}

/* End Breadcrumb */

/* Main Content */
.profile-hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding-bottom: 30px;
}

.profile-hero-container {
    display: flex;
    width: 100%;
}

.profile-copy {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    justify-content: center;
    flex: 1;
}

.profile-title {
    font-size: 48px;
    font-weight: 700;
    color: #1C1C1C;
    padding-bottom: 24px;
    border-bottom: 2px solid #DCDCDC;
}

.profile-header {
    display: flex;
    flex-direction: column;
    position: relative;
}

.profile-divider {
    display: flex;
    width: 120px;
    height: 4px;
    background-color: #E9450A;
    position: absolute;
    bottom: 0;
    left: 0;
}

.profile-desc {
    font-size: 20px;
    font-weight: 500;
    color: #1C1C1C;
}

.profile-illustration {
    display: flex;
    column-gap: 16px;
    flex: 1;
}

.profile-stat-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #FDECE7;
    row-gap: 24px;
    width: 220px;
}

.profile-stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #636363;
}

.profile-stat-value {
    font-size: 40px;
    font-weight: 700;
    color: #E9450A;
}

.lawyers__stats {
    display: flex;
    column-gap: 40px;
    padding: 24px;
    background-color: #FFFFFF;
    margin-bottom: 24px;
}

.lawyers__stat {
    display: flex;
    flex: 1;
    justify-content: center;
    column-gap: 4px;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
}

.lawyers__stat-label {
    font-size: 20px;
    font-weight: 500;
    color: #515151;
}

.lawyers__stat-value {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #B0B0B0;
    padding: 3px 8px;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
}

.lawyers__container {
    max-width: 1200px;
    margin: 30px auto 60px auto;
    display: flex;
    flex-direction: column;
}

.lawyers__card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
}

.lawyers__stat.active .lawyers__stat-label {
    color: #E9450A;
}

.lawyers__stat.active .lawyers__stat-value {
    background-color: #E9450A;
}

.lawyers__stat.active {
    position: relative;
}

.lawyers__stat.active::after {
    content: '';
    display: flex;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E9450A;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translate(-50%, 50%);
}

.profile-tab {
    display: none;
    flex-direction: column;
    row-gap: 24px;
}

.profile-tab.active {
    display: flex;
}

.lawyers__list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lawyers__list-title-wrapper {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #DCDCDC;
    position: relative;
}

.lawyers__list-actions {
    display: flex;
    column-gap: 12px;
}

.lawyers__list-action {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #101828;
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    cursor: pointer;
    border-radius: 90px;
}

.lawyers__list-title {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1C;
    padding-bottom: 20px;
}

.lawyers__list-title-separator {
    display: flex;
    width: 100px;
    height: 4px;
    background-color: #E9450A;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.lawyers-card__avatar {
    max-width: 200px;
    width: 100%;
}

.lawyers-card__icon {
    outline: transparent;
    background-color: transparent;
    border: transparent;
    cursor: pointer;
}

.lawyers-card__avatar-image {
    display: flex;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.lawyers-card__info {
    display: flex;
    column-gap: 40px;
}

.lawyers-card__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.lawyers-card__name-and-icon {
    display: flex;
}

.lawyers-card__name-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1C;
}

.lawyers-card__specialization {
    display: grid;
    /* 2 item on 1 row */
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lawyers-card__location {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lawyers-card__location-sep {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.lawyers-card__location-icon {
    display: flex;
    align-items: center;
}

.lawyers-card__location-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
    white-space: nowrap;
}

.lawyers-card__location-text.special {
    color: #1E4BB1;
}

.lawyers-card__location-sep {
    display: flex;
    align-items: center;
}

.lawyers-card__access {
    display: flex;
    column-gap: 8px;
}

.lawyers-card__access-icon {
    display: flex;
    align-items: center;
}

.lawyers-card__access-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
}

.lawyer-card__info-divider {
    height: 1px;
    background-color: #EDEDED;
    width: 100%;
    display: block;
}

.lawyer-card__info-bar {
    display: flex;
    justify-content: space-between;
}

.lawyer-card__status {
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.lawyer-card__status-text {
    font-size: 16px;
    font-weight: 500;
    color: #515151;
}

.lawyer-card__status-text--bold {
    font-weight: 700;
    color: #1E4BB1;
}

.lawyer-card__status-dot {
    display: flex;
}

.lawyer-card__contact {
    display: flex;
    column-gap: 12px;
}

.lawyer-card__contact-link {
    font-size: 16px;
    font-weight: 500;
    color: #F7F5F5;
    background-color: #1E4BB1;
    padding: 16px;
    display: flex;
    align-items: center;
}

.lawyer-card__contact-phone {
    display: flex;
    background-color: #E9450A;
    column-gap: 16px;
    align-items: center;
    padding: 16px;
}

.lawyer-card__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lawyer-card__phone-text {
    font-size: 16px;
    font-weight: 500;
    color: #F9F7F6;
}

.lawyers-card__content {
    margin-top: 20px;
    padding: 20px;
    background-color: #F5F1EA;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.lawyers__card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lawyers__card-tag {
    font-size: 16px;
    font-weight: 500;
    color: #101828;
    background-color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 90px;
    border: 1px solid #EDEDED;
    white-space: nowrap;
}

.lawyers__card-quote-text {
    font-size: 24px;
    font-weight: 500;
    color: #1C1C1C;
}

.lawyers__card-meta {
    display: flex;

}

.lawyers__card-meta-item {
    font-size: 14px;
    font-weight: 400;
    color: #1E4BB1;
    display: flex;
    align-items: center;
}

.lawyers__card-meta-item:not(:last-child)::after {
    content: '';
    display: flex;
    width: 4px;
    height: 4px;
    background-color: #E9450A;
    border-radius: 50%;
    margin: 0 12px;
}

.lawyers__card-divider {
    height: 1px;
    background-color: #DCDCDC;
    width: 100%;
    display: block;
}

.lawyers__card-line {
    font-size: 16px;
    font-weight: 400;
    color: #1C1C1C;
    margin: 0;
}

.lawyers__card-button {
    display: flex;
    border: 1px solid #E9450A;
    column-gap: 16px;
    padding: 16px;
    margin-top: 12px;
}

.lawyers__card-button-divider {
    display: flex;
    width: 1px;
    background-color: #E9450A;
    height: 28px;
}

.lawyers__card-button-text {
    font-size: 16px;
    font-weight: 500;
    color: #E9450A;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.lawyers__card-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-table {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.compare-table__header {
    display: flex;
}

.compare-table__header-item {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 16px;
    font-weight: 700;
    color: #1E4BB1;
    padding: 24px 16px;
    background-color: #E9EDF7;
}

.compare-table__header-item:first-child {
    flex-basis: 14%;
}

.compare-table__header-item:nth-child(2) {
    flex-basis: 15%;
}

.compare-table__header-item:nth-child(3) {
    flex-basis: 14%;
}

.compare-table__header-item:nth-child(4) {
    flex-basis: 14%;
}

.compare-table__header-item:nth-child(5) {
    flex-basis: 14%;
}

.compare-table__header-item:nth-child(6) {
    flex-basis: 20%;
}

.compare-table__header-item:last-child {
    flex: 1;
}

.compare-table__row {
    display: flex;
    border-bottom: 1px solid #F5F1EA;
    background-color: #FFFFFF;
}

.compare-table__cell {
    padding: 24px 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 16px;
    font-weight: 400;
    color: #1C1C1C;
}

.compare-table__cell-special {
    color: #E9450A;
}

.compare-table__cell-centered {
    justify-content: center;
}

.compare-table__cell:first-child {
    flex-basis: 14%;
}

.compare-table__cell:nth-child(2) {
    flex-basis: 15%;
}

.compare-table__cell:nth-child(3) {
    flex-basis: 14%;
}

.compare-table__cell:nth-child(4) {
    flex-basis: 14%;
}

.compare-table__cell:nth-child(5) {
    flex-basis: 14%;
}

.compare-table__cell:nth-child(6) {
    flex-basis: 20%;
}

.compare-table__cell:last-child {
    flex: 1;
}

.lawyer-schedules__content {
    display: flex;
    flex-direction: column;
}

.lawyer-schedules__list {
    background-color: #FFFFFF;
    padding: 24px 0 24px 0;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.lawyer-schedules__date {
    font-size: 20px;
    font-weight: 700;
    color: #1C1C1C;
    border-left: 8px solid #1E4BB1;
    padding-left: 40px;
}

.lawyer-schedules__item {
    padding: 20px;
    background-color: #FAF8F5;
    margin: 0 40px 0 40px;
    display: flex;
    column-gap: 32px;
}

.lawyer-schedules__time {
    font-size: 14px;
    font-weight: 500;
    color: #F0825B;
    display: flex;
    align-items: center;
}

.lawyer-schedules__info {
    display: flex;
    flex: 1;
}

.lawyer-schedules__name-text {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.lawyer-schedules__name-subtext {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
}

.lawyer-schedules__detail {
    display: flex;
    column-gap: 20px;
    align-items: center;
}

.lawyer-schedules__detail-link {
    display: flex;
    column-gap: 8px;
    align-items: center;
    cursor: pointer;
}

.lawyer-schedules__detail-text {
    color: #E9450A;
    font-size: 14px;
    font-weight: 500;
}

.lawyer-schedules__case-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lawyer-schedules__detail-icon {
    display: flex;
    align-items: center;
}

.lawyer-schedules-button-divider {
    display: block;
    width: 1px;
    background-color: #E9450A;
    height: 48px;
}

.lawyer-consultation__more-answers {
    display: flex;
    justify-content: right;
}

.lawyer-consultation__more-answers-link {
    display: flex;
    column-gap: 16px;
    cursor: pointer;
    padding: 16px;
    width: fit-content;
    background-color: #1E4BB1;
}

.lawyer-consultation__more-answers-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #F2F1EF;
}

.lawyer-consultation__more-answers-divider {
    display: block;
    width: 1px;
    height: 28px;
    background-color: #FFFFFF;
    align-self: center;
}

.lawyer-consultation__more-answers-icon {
    display: flex;
    align-items: center;
}

/* End Main Content */

/* Start Pagination */
.pagination {
    display: flex;
    column-gap: 5px;
    justify-content: flex-end
}

.pagination__link {
    display: flex;
    padding: 12px;
    min-width: 48px;
    justify-content: center;
    border: 1px solid #F1F1F1;
    align-items: center;
    column-gap: 10px;
    background-color: #FFFFFF;
}

.pagination__link.disabled {
    pointer-events: none;
}

.pagination__link.disabled .pagination__text {
    color: #515151;
}

.pagination__link.active {
    background-color: #E9450A;
    border: transparent;
    pointer-events: none;
}

.pagination__link.active .pagination__text {
    color: #FFFFFF;
}

.pagination__text {
    font-size: 16px;
    font-weight: 400;
    color: #101828;
    display: flex;
    align-items: center;
}


.pagination__icon {
    display: flex;
    align-items: center;
}

/* End Pagination */

/* Start Footer */
footer {
    background-color: #47413E;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content {
    padding: 32px 0 32px 0;
    display: flex;
    column-gap: 40px;
}

.footer__column {
    flex: 1;
}

.footer__nav {
    flex: 1;
    max-width: 208px;
    width: 100%;
}

.footer__column-title {
    font-size: 16px;
    font-weight: 700;
    color: #E9450A;
    padding-bottom: 8px;
    border-bottom: 1px solid #636363;
    position: relative;
}

.footer__column-title::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background-color: #E9450A;
    position: absolute;
    bottom: -1px;
}

.footer__column-group {
    display: flex;
    margin-top: 20px;
}

.footer__list-item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer__link {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    display: flex;
}

.footer__list-item-group {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.footer__list-sub-item {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.footer__sublink {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer__sublink::before {
    content: '';
    background-color: #E9450A;
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 16px;
}

.footer__list-sub-item--right-caret {
    max-width: 20px;
    width: 100%;
    display: flex;
    margin-left: 8px;
}

.footer__link--red {
    color: #E9450A;
}

.footer__bottom {
    display: flex;
    width: 100%;
    border-top: 1px solid #515151;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 0 14px 0;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__logo-link {
    font-size: 24px;
    font-weight: 700;
    color: #ED6A3B;
}

.footer__bottom-link {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.footer__copyright {
    padding: 20px 0;
    background-color: #272422;
}

.footer__copyright-text {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}

/* End Footer */
