.dashboard-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-top: 10px;
    font-weight: 400;
}

.tiles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.tile {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 57, 78, 0.15);
    border-color: #B49D75;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
}

.tile:active {
    transform: translateY(-4px);
}

.tile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03394E 0%, #045a7a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    transition: all 0.3s ease;
}

.tile:hover .tile-icon {
    background: linear-gradient(135deg, #B49D75 0%, #c9b08a 100%);
    transform: scale(1.1);
}

.tile-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #03394E;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.tile:hover .tile-title {
    color: #B49D75;
}

.tile-description {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
    max-width: 250px;
}

/* Responsive */
@media (max-width: 768px) {
    .tiles-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .tile {
        padding: 30px 20px;
    }

    .tile-icon {
        width: 70px;
        height: 70px;
    }

    .tile-icon svg {
        width: 36px;
        height: 36px;
    }

    .tile-title {
        font-size: 1.2em;
    }

    .tile-description {
        font-size: 0.9em;
    }

    .dashboard-subtitle {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .tile {
        padding: 25px 15px;
    }

    .tile-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .tile-icon svg {
        width: 32px;
        height: 32px;
    }
}
