.tc-container-8752cd51 {
    width: 100%;
}

.tc-section-header {
    width: 100%;
    margin-bottom: 30px;
    display: block;
    position: relative;
    padding-bottom: 15px;
}

.tc-main-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    display: inline-block;
}

.tc-section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #f2552c;
}

.tc-grid-8752cd51 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* 2-column top row, 3-column bottom row */
.tc-card-0, .tc-card-1 {
    grid-column: span 3;
}
.tc-card-2, .tc-card-3, .tc-card-4 {
    grid-column: span 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .tc-card-0, .tc-card-1, .tc-card-2, .tc-card-3, .tc-card-4 {
        grid-column: span 3;
    }
}
@media (max-width: 768px) {
    .tc-card-0, .tc-card-1, .tc-card-2, .tc-card-3, .tc-card-4 {
        grid-column: span 6;
    }
}

.tc-card {
    background-color: #1c1c1e;
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border-color: #f2552c; /* Theme orange color */
}

/* Animation on hover - no longer moving tags to avoid jitter */
.tc-card .tc-icon-wrapper,
.tc-card .tc-title,
.tc-card .tc-desc {
    transition: transform 0.3s ease;
}

.tc-card:hover .tc-icon-wrapper,
.tc-card:hover .tc-title,
.tc-card:hover .tc-desc {
    transform: translateX(5px);
}

/* Watermark strictly placed in the center per image */
.tc-watermark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(25%);
    font-size: 150px;
    color: rgba(255, 255, 255, 0.04);
    z-index: 0;
    pointer-events: none;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tc-watermark svg {
    width: 150px;
    height: 150px;
    fill: rgba(255, 255, 255, 0.04);
    transition: transform 0.5s ease;
}

.tc-card:hover .tc-watermark {
    transform: translateY(-50%) translateX(25%) scale(1.05);
}

.tc-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tc-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2552c;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.tc-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #f2552c;
    transition: transform 0.4s ease;
}

.tc-card:hover .tc-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.tc-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-desc {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.tc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tc-tag {
    background-color: rgba(255,255,255,0.08);
    color: #d4d4d8;
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tc-card:hover .tc-tag {
    background-color: rgba(255,255,255,0.15);
}