/* =========================
   WORKDECK PAGE STYLING
========================= */

.workdeck-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.workdeck-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workdeck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.work-card {
    background: rgba(217, 119, 6, 0.03);
    border: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.work-card:hover {
    border-color: #d97706;
    transform: translateY(-5px);
    background: rgba(217, 119, 6, 0.05);
}

.work-card i {
    font-size: 40px;
    color: #d97706;
    margin-bottom: 20px;
    display: block;
}

.work-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.work-card p {
    color: #b7c7d8;
    font-size: 15px;
    line-height: 1.7;
}

/* Architecture Alignment */
.arch-container-work {
    background: #0f172a;
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
}

.arch-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

.arch-container-work img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.ztna-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid #d97706;
    color: #d97706;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}