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

.tc-e1e6c0bc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    padding: 40px 32px;
    position: relative;
    border: 2px solid #0B4D92;
    box-shadow: 8px 8px 0px #0B4D92;
}

.tc-e1e6c0bc-deco {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

.tc-e1e6c0bc-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #0B4D92;
}

.tc-e1e6c0bc-header, .tc-e1e6c0bc-body, .tc-e1e6c0bc-footer {
    position: relative;
    z-index: 1;
}

.tc-e1e6c0bc-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}

.tc-e1e6c0bc-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 24px;
    border: 3px solid #0B4D92;
    box-shadow: 6px 6px 0px #CE74B2;
    position: relative;
    align-self: flex-start;
}

.tc-e1e6c0bc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(110%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.tc-e1e6c0bc-card:hover .tc-e1e6c0bc-image {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.tc-e1e6c0bc-name {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.tc-e1e6c0bc-meta {
    font-size: 15px;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.tc-e1e6c0bc-title {
    font-weight: 600;
    color: #CE74B2;
    background: #0B4D92;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tc-e1e6c0bc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.tc-e1e6c0bc-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
}

.tc-e1e6c0bc-info-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tc-e1e6c0bc-info-item a:hover {
    color: #0B4D92;
}

.tc-e1e6c0bc-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tc-e1e6c0bc-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.tc-e1e6c0bc-tag {
    background: #fff;
    color: #1a1a1a;
    padding: 6px 12px;
    border: 1px solid #0B4D92;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0px #46C486;
}

.tc-e1e6c0bc-tag:hover {
    background: #46C486;
    color: #1a1a1a;
    box-shadow: 4px 4px 0px #0B4D92;
    transform: translate(-2px, -2px);
}

.tc-e1e6c0bc-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    text-align: left;
    border-left: 4px solid #0B4D92;
    padding-left: 16px;
}

.tc-e1e6c0bc-approaches {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-top: 20px;
    border-top: 2px solid #0B4D92;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.tc-e1e6c0bc-approaches-label {
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.tc-e1e6c0bc-footer {
    margin-top: auto;
}

.tc-e1e6c0bc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: #0B4D92;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid #0B4D92;
    box-shadow: 6px 6px 0px #F0E7CB;
}

.tc-e1e6c0bc-button:hover {
    background-color: #CE74B2;
    color: #1a1a1a;
    box-shadow: 8px 8px 0px #0B4D92;
    transform: translate(-2px, -2px);
}

.tc-e1e6c0bc-button svg {
    transition: transform 0.3s ease;
}

.tc-e1e6c0bc-button:hover svg {
    transform: translateX(6px);
}